SGGL_SGY/SUBQHSE/Model/HSSE/DigDataHSEDataCollectItem.cs

98 lines
1.6 KiB
C#
Raw Permalink Normal View History

2025-05-08 14:26:36 +08:00
namespace Model
2025-02-19 15:58:42 +08:00
{
2025-05-08 14:26:36 +08:00
public class DigDataHSEDataCollectItem
2025-02-19 15:58:42 +08:00
{
2025-05-08 14:26:36 +08:00
public string HSEDataCollectItemId
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string HSEDataCollectId
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public int SortIndex
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string HSEContent
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string MeasureUnit
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month1
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month2
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month3
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month4
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month5
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month6
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month7
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month8
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month9
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month10
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month11
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string Month12
2025-02-19 15:58:42 +08:00
{
get;
set;
}
2025-05-08 14:26:36 +08:00
public string MonthSum
2025-02-19 15:58:42 +08:00
{
get;
set;
}
}
2025-05-08 14:26:36 +08:00
}