SGGL_SHJ/SGGL/Model/HSSE/WorkPostStatisticItem.cs

49 lines
757 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;
}
}
}