เพิ่มฟิลด์สถานภาพ

This commit is contained in:
Bright 2025-01-14 18:12:07 +07:00
parent 97b050779a
commit ed0af9661c
2 changed files with 6 additions and 0 deletions

View file

@ -82,6 +82,9 @@ namespace BMA.EHR.Domain.Models.Retirement
[Comment("สถานะการใช้งาน")]
public bool IsActive { get; set; } = true;
[Comment("สถานภาพ (OFFICER->ข้าราชการ EMPLOYEE->ลูกจ้างประจำ)")]
public string? profileType { get; set; }
public virtual List<RetirementDeceasedNoti> RetirementDeceasedNotis { get; set; } = new List<RetirementDeceasedNoti>();
}
}

View file

@ -89,5 +89,8 @@ namespace BMA.EHR.Domain.Models.Retirement
[Comment("สถานะการใช้งาน")]
public bool IsActive { get; set; } = true;
[Comment("สถานภาพ (OFFICER->ข้าราชการ EMPLOYEE->ลูกจ้างประจำ)")]
public string? profileType { get; set; }
}
}