You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
887 B
31 lines
887 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CustomerReports
|
|
{
|
|
public class GetCustomerOrgPhysicalExaminationStatisticsInputDto
|
|
{
|
|
public List<Guid> CustomerOrgIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日期类型(1、登记日期 2、体检日期 3、总检日期)
|
|
/// </summary>
|
|
[Required(ErrorMessage = "日期类型不能为空")]
|
|
public char DateType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
[Required(ErrorMessage = "开始日期不能为空")]
|
|
public string StartDate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
[Required(ErrorMessage = "结束日期不能为空")]
|
|
public string EndDate { get; set; }
|
|
}
|
|
}
|