JinanCementFactory/DataServer/api/get_equipment_operation.cs

22 lines
523 B
C#

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