|
|
@ -31,11 +31,6 @@ namespace Shentun.Peis.Models |
|
|
[Column("patient_register_id")] |
|
|
[Column("patient_register_id")] |
|
|
public Guid PatientRegisterId { get; set; } |
|
|
public Guid PatientRegisterId { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 病人号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Column("patient_id")] |
|
|
|
|
|
public Guid PatientId { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// his 病人号
|
|
|
/// his 病人号
|
|
|
@ -61,6 +56,10 @@ namespace Shentun.Peis.Models |
|
|
[Column("concurrency_stamp")] |
|
|
[Column("concurrency_stamp")] |
|
|
public string ConcurrencyStamp { get; set; } |
|
|
public string ConcurrencyStamp { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
[ForeignKey(nameof(PatientRegisterId))] |
|
|
|
|
|
[InverseProperty("ChargeRequest")] |
|
|
|
|
|
public virtual PatientRegister PatientRegister { get; set; } = null!; |
|
|
|
|
|
|
|
|
//[ForeignKey(nameof(PatientRegisterId))]
|
|
|
//[ForeignKey(nameof(PatientRegisterId))]
|
|
|
//[InverseProperty("Charges")]
|
|
|
//[InverseProperty("Charges")]
|
|
|
//public virtual PatientRegister PatientRegister { get; set; } = null!;
|
|
|
//public virtual PatientRegister PatientRegister { get; set; } = null!;
|
|
|
|