49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
|
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; }
|
|||
|
}
|
|||
|
}
|