เพิ่มเรื่องร้องเรียนตอนออกคำสั่ง

This commit is contained in:
Kittapath 2024-01-15 10:38:28 +07:00
parent 4f32e253fd
commit 5ca85c6e7e
13 changed files with 4045 additions and 58 deletions

View file

@ -214,6 +214,9 @@ namespace BMA.EHR.Domain.Models.Commands.Core
[Comment("อ้างอิงมาตราตามกฏหมาย")]
public string? RefRaw { get; set; }
[Comment("Id เรื่องร้องเรียน")]
public Guid? ComplaintId { get; set; }
#endregion
public virtual List<CommandDocument> Documents { get; set; } = new();

View file

@ -48,6 +48,8 @@ namespace BMA.EHR.Domain.Models.Discipline
public string? DisciplinaryFaultLevel { get; set; }
[Comment("กรณีความผิด")]
public string? DisciplinaryCaseFault { get; set; }
[Required, Comment("Id เรื่องสอบสวน")]
public DisciplineDisciplinary DisciplineDisciplinary { get; set; }
// [Required, Comment("Id ผู้ถูกร้องเรียน")]
// public DisciplineDisciplinary_ProfileComplaintInvestigate? DisciplineDisciplinary_ProfileComplaintInvestigate { get; set; }
}