แก้สืบสอบ status เพิ่มdefult

This commit is contained in:
Kittapath 2023-12-01 09:46:39 +07:00
parent dd4a409855
commit 49d70b1e05
16 changed files with 34059 additions and 3 deletions

View file

@ -78,6 +78,12 @@ namespace BMA.EHR.Domain.Models.Discipline
[Comment("กรณีมีมูลต้องเลือกว่า 'ร้ายแรง' หรือ 'ไม่ร้ายแรง'")]
public string? InvestigationCauseText { get; set; }
[Comment("ขยายเวลา")]
public bool InvestigationExtendStatus { get; set; } = false;
[Comment("จำนวนวันที่ต้องการขยาย")]
public int? InvestigationDaysExtend { get; set; }
[Comment("พยานและบันทึกถ้อยคำพยาน")]
public string? DisciplinaryWitnesses { get; set; }
@ -103,6 +109,8 @@ namespace BMA.EHR.Domain.Models.Discipline
public DateTime? DisciplinaryDateEnd { get; set; }
[Comment("จำนวนวันที่ขยาย")]
public int? DisciplinaryDaysExtend { get; set; }
[Comment("ขยายเวลา")]
public bool DisciplinaryExtendStatus { get; set; } = false;
[Comment("วันที่มีคำสั่งให้สอบสวน")]
public DateTime? DisciplinaryDateInvestigation { get; set; }
[Comment("วันที่รายงานผลการสอบสวน")]

View file

@ -74,6 +74,12 @@ namespace BMA.EHR.Domain.Models.Discipline
[Comment("กรณีมีมูลต้องเลือกว่า 'ร้ายแรง' หรือ 'ไม่ร้ายแรง'")]
public string? InvestigationCauseText { get; set; }
[Comment("ขยายเวลา")]
public bool InvestigationExtendStatus { get; set; } = false;
[Comment("จำนวนวันที่ต้องการขยาย")]
public int? InvestigationDaysExtend { get; set; }
public DisciplineComplaint DisciplineComplaint { get; set; }
public virtual List<DisciplineInvestigate_ProfileComplaint> DisciplineInvestigate_ProfileComplaints { get; set; } = new List<DisciplineInvestigate_ProfileComplaint>();
public virtual List<DisciplineInvestigate_DocComplaint> DisciplineInvestigate_DocComplaints { get; set; } = new List<DisciplineInvestigate_DocComplaint>();