using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.CustomerReports { public class GetCustomerOrgPhysicalExaminationStatisticsInputDto { public List CustomerOrgIds { get; set; } /// /// 日期类型(1、登记日期 2、体检日期 3、总检日期) /// [Required(ErrorMessage = "日期类型不能为空")] public char DateType { get; set; } /// /// 开始日期 /// [Required(ErrorMessage = "开始日期不能为空")] public string StartDate { get; set; } /// /// 结束日期 /// [Required(ErrorMessage = "结束日期不能为空")] public string EndDate { get; set; } } }