using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.ChargeReports { public class GetSummaryOfPhysicalExaminationPersonnelReportRequestDto { /// /// 开始日期 /// [Required(ErrorMessage = "开始日期不能为空")] public string StartDate { get; set; } /// /// 结束日期 /// [Required(ErrorMessage = "结束日期不能为空")] public string EndDate { get; set; } } }