api สืบสวน

This commit is contained in:
Kittapath 2023-11-23 19:59:24 +07:00
parent d06e1af217
commit ab171a7394
24 changed files with 31960 additions and 429 deletions

View file

@ -41,8 +41,8 @@ namespace BMA.EHR.Domain.Models.Discipline
// [Required, Comment("อ้างอิงรหัสเอกสาร")]
// public Document Document { get; set; }
[Comment("เหตุผลยุติเรื่อง")]
public string? RejectReason { get; set; }
[Comment("ผลการตรวจสอบ")]
public string? Result { get; set; }
[Comment("กรณีหน่วยงานใส่ id ของหน่วยงาน")]
public Guid? Organization { get; set; }
@ -51,5 +51,6 @@ namespace BMA.EHR.Domain.Models.Discipline
public Guid ConsideredAgency { get; set; }
public virtual List<DisciplineComplaint_Profile> DisciplineComplaint_Profiles { get; set; } = new List<DisciplineComplaint_Profile>();
public virtual List<DisciplineComplaint_Doc> DisciplineComplaint_Docs { get; set; } = new List<DisciplineComplaint_Doc>();
public virtual List<DisciplineInvestigate> DisciplineInvestigates { get; set; } = new List<DisciplineInvestigate>();
}
}