59 lines
946 B
C#
59 lines
946 B
C#
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;
|
|
}
|
|
public decimal EngineeringQuantity
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public decimal WorkEfficiency
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
} |