54 lines
844 B
C#
54 lines
844 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |