Add Field to ProfileSAlary

This commit is contained in:
Suphonchai Phoonsawat 2023-08-08 10:35:48 +07:00
parent 1a7be19e33
commit aff4dcd38d
6 changed files with 12762 additions and 1 deletions

View file

@ -49,9 +49,16 @@ namespace BMA.EHR.Domain.Models.HR
[Comment("ตำแหน่ง (รายละเอียด)")]
public string? SalaryClass { get; set; }
[Comment("เอกสารอ้างอิง")]
public string? SalaryRef { get; set; }
public virtual List<ProfileSalaryHistory> ProfileSalaryHistorys { get; set; } = new List<ProfileSalaryHistory>();
public virtual Profile? Profile { get; set; }
[Comment("เลขที่คำสั่ง")]
public string CommandNo { get; set; }
[Comment("ประเภทคำสั่ง")]
public string CommandTypeName { get; set; }
}
}