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.
40 lines
984 B
40 lines
984 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CustomerReports
|
|
{
|
|
public class CustomerOrgInputDto
|
|
{
|
|
/// <summary>
|
|
/// 单位ID 需要包含查出子级ID
|
|
/// </summary>
|
|
public Guid CustomerOrgId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位体检次数ID
|
|
/// </summary>
|
|
public Guid CustomerOrgRegisterId { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<Guid> CustomerOrgGroupId { get; set; } = new List<Guid>();
|
|
|
|
/// <summary>
|
|
/// 日期类型(1、登记日期 2、体检日期 3、总检日期)
|
|
/// </summary>
|
|
public char DateType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
public string StartDate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
public string EndDate { get; set; }
|
|
}
|
|
}
|