59 lines
842 B
C#
59 lines
842 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Model
|
|
{
|
|
public class HSSE_DayReportDetail
|
|
{
|
|
public string DayReportDetailId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string DayReportId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string UnitId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int? WorkTime
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int? RealPersonNum
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int? PersonWorkTime
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int? TotalPersonWorkTime
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int? SumTotalPersonWorkTime
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|