query report อุทธรณ์

This commit is contained in:
Kittapath 2023-12-19 08:33:09 +07:00
parent f11f927f7e
commit 52af68a9a9
6 changed files with 11826 additions and 4 deletions

View file

@ -39,6 +39,12 @@ namespace BMA.EHR.Domain.Models.Discipline
[Comment("ชื่อ-นามสกุลผู้อุทธรณ์/ร้องทุกข์")]
public string? Fullname { get; set; }
[Comment("ตำแหน่งผู้อุทธรณ์/ร้องทุกข์")]
public string? Position { get; set; }
[Comment("สังกัดผู้อุทธรณ์/ร้องทุกข์")]
public string? Oc { get; set; }
public virtual List<DisciplineComplaint_Appeal_Doc> DisciplineComplaint_Appeal_Docs { get; set; } = new List<DisciplineComplaint_Appeal_Doc>();
public virtual List<DisciplineComplaint_Appeal_History> DisciplineComplaint_Appeal_Historys { get; set; } = new List<DisciplineComplaint_Appeal_History>();
}