4 changed files with 106 additions and 2 deletions
-
19ThirdPlugIns/Shentun.Peis.PlugIns.Gem/PatientRegisters/Qztl/ImportPatientRegisterPlugInsQztl.cs
-
82ThirdPlugIns/Shentun.Peis.PlugIns.Gem/PatientRegisters/Qztl/PatientRegisterQztl.cs
-
2src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointWebPeisPlugIns.cs
-
5src/Shentun.Peis.Application.Contracts/AppointPatientRegisters/AppointPatientRegisterDto.cs
@ -0,0 +1,82 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Shentun.Peis.PlugIns.Extensions.PatientRegisters.Qztl |
|||
{ |
|||
public class PatientRegisterQztl |
|||
{ |
|||
public Guid PatientId { get; set; } |
|||
public Guid PatientRegisterId { get; set; } |
|||
public string PatientRegisterNo { get; set; } |
|||
/// <summary>
|
|||
/// 档案号 需要配置唯一索引
|
|||
/// </summary>
|
|||
public string? PatientNo { get; set; } |
|||
/// <summary>
|
|||
/// HIS病人ID
|
|||
/// </summary>
|
|||
public string? HisPatientId { get; set; } |
|||
public Guid MedicalCenterId { get; set; } |
|||
/// <summary>
|
|||
/// 姓名
|
|||
/// </summary>
|
|||
public string PatientName { get; set; } = null!; |
|||
/// <summary>
|
|||
/// 性别
|
|||
/// </summary>
|
|||
public char SexId { get; set; } |
|||
/// <summary>
|
|||
/// 婚姻状况
|
|||
/// </summary>
|
|||
public char MaritalStatusId { get; set; } |
|||
/// <summary>
|
|||
/// 出生日期
|
|||
/// </summary>
|
|||
public DateTime? BirthDate { get; set; } |
|||
/// <summary>
|
|||
/// 年龄
|
|||
/// </summary>
|
|||
public short? Age { get; set; } |
|||
/// <summary>
|
|||
/// 民族编号
|
|||
/// </summary>
|
|||
[Column("nation_id")] |
|||
public string? NationId { get; set; } |
|||
/// <summary>
|
|||
/// 身份证号
|
|||
/// </summary>
|
|||
public string? IdNo { get; set; } |
|||
/// <summary>
|
|||
/// email
|
|||
/// </summary>
|
|||
public string? Email { get; set; } |
|||
/// <summary>
|
|||
/// 电话
|
|||
/// </summary>
|
|||
public string? Telephone { get; set; } |
|||
/// <summary>
|
|||
/// 手机号
|
|||
/// </summary>
|
|||
public string? MobileTelephone { get; set; } |
|||
/// <summary>
|
|||
/// 地址
|
|||
/// </summary>
|
|||
public string? Address { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 单位名称
|
|||
/// </summary>
|
|||
public string CustomerOrgName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 部门名称
|
|||
/// </summary>
|
|||
public string DepartmentName { get; set; } |
|||
|
|||
public string Planuserid { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue