SGGL_JT/SUBQHSE/Model/APIItem/HSSE/SitePerson_DayReportItem.cs

49 lines
1.2 KiB
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 Model;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Model
{
/// <summary>
///
/// </summary>
public class SitePerson_DayReportItem
{
//public string DayReportId { get; set; }
/// <summary>
/// 项目名称
/// </summary>
[Required(ErrorMessage = "项目名称ProjectId is required.")]
public string ProjectId { get; set; }
/// <summary>
/// 编制人身份证号码
/// </summary>
[Required(ErrorMessage = "编制人身份证号码CompileMan is required.")]
public string CompileMan { get; set; }
/// <summary>
/// 编制日期
/// </summary>
public DateTime? CompileDate { get; set; }
//public decimal TotalPersonWorkTime { get; set; }
/// <summary>
/// 状态
/// </summary>
//public string States { get; set; }
/// <summary>
/// 子表数据
/// </summary>
public List<SitePerson_DayReportDetailItem> ChildList { get; set; }
//public decimal DayWorkTime { get; set; }
}
}