18 lines
442 B
C#
18 lines
442 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; }
|
|
}
|
|
}
|