using Shentun.Peis.PeisReports; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.CustomerReports { public class GetDiseaseCountStatisticsReportRequestDto { /// /// 单位相关 /// public List CustomerOrgs { get; set; } = new List(); /// /// 诊断ID 集合 这里的诊断需要增加一个是否为疾病的条件 前台拉取的数据就需要筛选 /// public List DiagnosisIds { get; set; } = new List(); /// /// 完成标志(0 预登记 1正式登记 2部分已检 3已总检) 不传查所有 /// public List CompleteFlags { get; set; } = new List(); } }