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.
104 lines
2.2 KiB
104 lines
2.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.WebPeis.Persons
|
|
{
|
|
public class PersonDto
|
|
{
|
|
public Guid PersonId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 档案号
|
|
/// </summary>
|
|
public string PersonNo { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 组织单位ID
|
|
/// </summary>
|
|
public Guid MedicalCenterId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public string PersonName { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 性别
|
|
/// </summary>
|
|
public char SexId { get; set; }
|
|
public string SexName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 婚姻状况
|
|
/// </summary>
|
|
public char MaritalStatusId { get; set; }
|
|
|
|
public string MaritalStatusName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出生日期
|
|
/// </summary>
|
|
public DateTime? BirthDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 民族编号
|
|
/// </summary>
|
|
public string? NationId { get; set; }
|
|
|
|
public string? NationName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出生地
|
|
/// </summary>
|
|
public Guid? BirthPlaceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 身份证号
|
|
/// </summary>
|
|
public string? IdNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 邮政编码
|
|
/// </summary>
|
|
public string? PostalCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// email
|
|
/// </summary>
|
|
public string? Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// 手机号
|
|
/// </summary>
|
|
public string? MobileTelephone { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
public string? Address { get; set; }
|
|
|
|
/// <summary>
|
|
/// 简码
|
|
/// </summary>
|
|
public string SimpleCode { get; set; } = null!;
|
|
|
|
public string? IdTypeId { get; set; }
|
|
|
|
public string? CountryCode { get; set; }
|
|
|
|
public char? IsAllowBind { get; set; }
|
|
|
|
public char? IsActive { get; set; }
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
public char IsHaveQuestionRegister { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|