EquipmentSummaryFailuresModel.cs
1.26 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
using System;
using System.Collections.Generic;
using System.Text;
namespace HHECS.Application
{
/// <summary>
/// 故障总结报表实体
/// </summary>
public class EquipmentSummaryFailuresModel
{
public string warehouseCode { get; set; }
public int JanTime { get; set; }
public int JanCounts { get; set; }
public int FebTime { get; set; }
public int FebCounts { get; set; }
public int MarTime { get; set; }
public int MarCounts { get; set; }
public int AprTime { get; set; }
public int AprCounts { get; set; }
public int MayTime { get; set; }
public int MayCounts { get; set; }
public int JunTime { get; set; }
public int JunCounts { get; set; }
public int JulTime { get; set; }
public int JulCounts { get; set; }
public int AugTime { get; set; }
public int AugCounts { get; set; }
public int SepTime { get; set; }
public int SepCounts { get; set; }
public int OctTime { get; set; }
public int OctCounts { get; set; }
public int NovTime { get; set; }
public int NovCounts { get; set; }
public int DecTime { get; set; }
public int DecCounts { get; set; }
}
}