22 lines
528 B
C#
22 lines
528 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_coal_equipment
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<coal_equipmentData> data { get; set; }
|
|
}
|
|
public class coal_equipmentData
|
|
{
|
|
public decimal? Coal { get; set; }
|
|
public string State { get; set; }
|
|
public decimal? Carbon { get; set;}
|
|
}
|
|
}
|