2022-12-07 09:25:43 +08:00
|
|
|
|
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; }
|
|
|
|
|
}
|
2023-06-09 10:49:44 +08:00
|
|
|
|
|
|
|
|
|
public class TotalElec
|
|
|
|
|
{
|
|
|
|
|
public string building_tag { get; set; }
|
|
|
|
|
public string device_number { get; set; }
|
|
|
|
|
public string remark { get; set; }
|
|
|
|
|
}
|
2022-12-07 09:25:43 +08:00
|
|
|
|
}
|