SimInfoReport.cs
1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hh.Mes.POJO.ApiEntity.BiDecision
{
public class SimInfoReport
{
/// <summary>
/// 月统计
/// </summary>
public EquipmentReadinessRateArea Month { get; set; }
/// <summary>
/// 季度统计
/// </summary>
public EquipmentReadinessRateArea Quarter { get; set; }
public List<SimInfoReportDetail> KunShan { get; set; } = new List<SimInfoReportDetail>();
public List<SimInfoReportDetail> XuZhou { get; set; } = new List<SimInfoReportDetail>();
public List<SimInfoReportDetail> ChangSha { get; set; } = new List<SimInfoReportDetail>();
}
public class SimInfoReportDetail
{
/// <summary>
/// 网关设备序列号
/// </summary>
public string GatewaySerialNumber { get; set; }
/// <summary>
/// 网关客户
/// </summary>
public string GatewayClient { get; set; }
/// <summary>
/// 领卡人
/// </summary>
public string GetCardUser { get; set; }
/// <summary>
/// 申请时间
/// </summary>
public string DebugDate { get; set; }
/// <summary>
/// 领卡时间
/// </summary>
public string GetCardDate { get; set; }
}
}