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.
|
|
namespace Shentun.PeisReport.Api.Dto{ public class PatientRegisterListDto : PublicResultDto { public List<PatientRegisterListResultDataDto> Data { get; set; } = new List<PatientRegisterListResultDataDto>(); }
public class PatientRegisterListResultDataDto { /// <summary>
/// 人员id
/// </summary>
public string patient_register_id { get; set; }
/// <summary>
/// 条码号
/// </summary>
public string barcode_no { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string name { get; set; }
/// <summary>
/// 性别
/// </summary>
public string sex { get; set; }
/// <summary>
/// 年龄
/// </summary>
public string age { get; set; }
/// <summary>
/// 手机号
/// </summary>
public string mobile_telephone { get; set; }
/// <summary>
/// 体检次数
/// </summary>
public string medical_time { get; set; }
/// <summary>
/// 体检日期 格式(2024-02-20)
/// </summary>
public string medical_date { get; set; } }}
|