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.
29 lines
986 B
29 lines
986 B
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
|
|
{
|
|
/// <summary>
|
|
/// 单位相关
|
|
/// </summary>
|
|
public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 诊断ID 集合 这里的诊断需要增加一个是否为疾病的条件 前台拉取的数据就需要筛选
|
|
/// </summary>
|
|
public List<Guid> DiagnosisIds { get; set; } = new List<Guid>();
|
|
|
|
/// <summary>
|
|
/// 完成标志(0 预登记 1正式登记 2部分已检 3已总检) 不传查所有
|
|
/// </summary>
|
|
public List<char> CompleteFlags { get; set; } = new List<char>();
|
|
}
|
|
}
|