JinanCementFactory/DataServer/api/threedimensional/get_facility_information.cs

22 lines
540 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataServer.api.threedimensional
{
public class get_facility_information
{
public int code { get; set; }
public string msg { get; set; }
public List<facility_informationData> data { get; set; }
}
public class facility_informationData
{
public decimal? EH { get; set; }
public string State { get; set; }
public decimal? P { get; set; }
}
}