SGGL_JT/SUBQHSE/Model/APIItem/HSSE/SitePerson_DayReportDetailI...

38 lines
827 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.ComponentModel.DataAnnotations;
namespace Model
{
public class SitePerson_DayReportDetailItem
{
//public string DayReportDetailId { get; set; }
//public string DayReportId { get; set; }
/// <summary>
/// 所属单位名称
/// </summary>
[Required(ErrorMessage = "所属单位名称UnitId is required.")]
public string UnitId { get; set; }
/// <summary>
/// 平均工时
/// </summary>
public decimal? WorkTime { get; set; }
/// <summary>
/// 实际人数
/// </summary>
public decimal? RealPersonNum { get; set; }
/// <summary>
/// 人工时
/// </summary>
public decimal? PersonWorkTime { get; set; }
}
}