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.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						                                                                                  | 
						 | 
						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; }    }}
  |