เพิ่มฟิลด์ (Issue #874)

This commit is contained in:
Bright 2024-12-17 18:10:55 +07:00
parent 8c34bf857a
commit cfa675ac32
4 changed files with 13 additions and 1 deletions

View file

@ -75,6 +75,10 @@ namespace BMA.EHR.Domain.Models.Discipline
public bool? IsDisciplinary { get; set; } = false;
[Comment("รายการเก่า")]
public bool? IsAncestorDNA { get; set; } = false;
[Comment("สถานภาพ (OFFICER->ข้าราชการ EMPLOYEE->ลูกจ้างประจำ)")]
public string? profileType { get; set; }
[Required, Comment("Id เรื่องสืบสวน")]
public DisciplineInvestigate DisciplineInvestigate { get; set; }
}