修改医生实体模型
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
6dcfbb8717
commit
3bdd5af113
|
@ -71,7 +71,7 @@ public class Doctor : BaseFullAuditEntity
|
||||||
|
|
||||||
public ContractorStatusEnum CooperateStatus { get; set; } = ContractorStatusEnum.Noncooperation;
|
public ContractorStatusEnum CooperateStatus { get; set; } = ContractorStatusEnum.Noncooperation;
|
||||||
|
|
||||||
public Guid DepartmentId { get; set; }
|
public Guid? DepartmentId { get; set; }
|
||||||
|
|
||||||
[StringLength(400)]
|
[StringLength(400)]
|
||||||
public string DepartmentOther { get; set; } = null!;
|
public string DepartmentOther { get; set; } = null!;
|
||||||
|
@ -89,7 +89,7 @@ public class Doctor : BaseFullAuditEntity
|
||||||
|
|
||||||
public Guid GCPId { get; set; }
|
public Guid GCPId { get; set; }
|
||||||
|
|
||||||
public Guid HospitalId { get; set; }
|
public Guid? HospitalId { get; set; }
|
||||||
|
|
||||||
public string HospitalOther { get; set; } = null!;
|
public string HospitalOther { get; set; } = null!;
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ public class Doctor : BaseFullAuditEntity
|
||||||
[StringLength(400)]
|
[StringLength(400)]
|
||||||
public string PositionOtherCN { get; set; } = null!;
|
public string PositionOtherCN { get; set; } = null!;
|
||||||
|
|
||||||
public Guid RankId { get; set; }
|
public Guid? RankId { get; set; }
|
||||||
|
|
||||||
[StringLength(400)]
|
[StringLength(400)]
|
||||||
public string RankOther { get; set; } = null!;
|
public string RankOther { get; set; } = null!;
|
||||||
|
@ -165,7 +165,7 @@ public class Doctor : BaseFullAuditEntity
|
||||||
|
|
||||||
public int Sex { get; set; }
|
public int Sex { get; set; }
|
||||||
|
|
||||||
public Guid SpecialityId { get; set; }
|
public Guid? SpecialityId { get; set; }
|
||||||
|
|
||||||
[StringLength(400)]
|
[StringLength(400)]
|
||||||
public string SpecialityOther { get; set; } = null!;
|
public string SpecialityOther { get; set; } = null!;
|
||||||
|
|
Loading…
Reference in New Issue