SGGL_SHJ/SGGL/Model/HSSE/WorkPostStatisticItem.cs

59 lines
946 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
namespace Model
{
public class WorkPostStatisticItem
{
public string ID
{
get;
set;
}
public string UnitId
{
get;
set;
}
public string UnitName
{
get;
set;
}
public string WorkPostId
{
get;
set;
}
public string WorkPostName
{
get;
set;
}
public int PersonCount
{
get;
set;
}
public int WorkHous
{
get;
set;
}
public string UnitWorkPostID
{
get;
set;
}
2024-07-10 16:05:54 +08:00
public decimal EngineeringQuantity
{
get;
set;
}
public decimal WorkEfficiency
{
get;
set;
}
2022-09-05 16:36:31 +08:00
}
}