add field เพื่อระบบกรอกข้อมูลทะเบียนประวัติ

This commit is contained in:
Suphonchai Phoonsawat 2024-02-09 12:49:13 +07:00
parent 1f4cee21c7
commit c704556891
11 changed files with 51552 additions and 1 deletions

View file

@ -0,0 +1,23 @@
using BMA.EHR.Domain.Models.Base;
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileLeaveSummary : EntityBase
{
public virtual Profile? Profile { get; set; }
public int LeaveYear { get; set; } = 0;
public string? SumSick { get; set; } = string.Empty;
public string? SumRest { get; set; } = string.Empty;
public string? SumLate { get; set; } = string.Empty;
public string? SumAbsent { get; set; } = string.Empty;
public string? SumEducation { get; set; } = string.Empty;
public bool IsActive { get; set; } = true;
}
}