25 lines
629 B
C#
25 lines
629 B
C#
namespace FrontendWebApi.Models
|
|
{
|
|
public class WorkOrderGraph
|
|
{
|
|
public int DoneCnt { get; set; }
|
|
public int NotDoneCnt { get; set; }
|
|
public int DispatchCnt{ get; set; }
|
|
public int NotDispatchCnt { get; set; }
|
|
}
|
|
|
|
public class TotalElec
|
|
{
|
|
public string building_tag { get; set; }
|
|
public string device_number { get; set; }
|
|
public string remark { get; set; }
|
|
}
|
|
|
|
public class ContractValue
|
|
{
|
|
public string building_tag { get; set; }
|
|
public string contract_value { get; set; }
|
|
public string remark { get; set; }
|
|
}
|
|
}
|