fix defect and add new api

This commit is contained in:
Suphonchai Phoonsawat 2024-01-08 09:31:56 +07:00
parent 576c43749a
commit 019a400028
7 changed files with 1180 additions and 6 deletions

View file

@ -139,5 +139,20 @@ namespace BMA.EHR.Domain.Models.Leave.Requests
[Comment("ช่วงของการลา เช่น ลาทั้งวัน ครึ่งวันเช้า ครึ่งวันบ่าย")]
public string? LeaveRange { get; set; } = string.Empty;
[Comment("เรียนใคร")]
public string? Dear { get; set; } = string.Empty;
[Comment("code ของประเภทการลา")]
public string? LeaveTypeCode { get; set; } = string.Empty;
[Comment("ตำแหน่งผู้ยื่นขอ")]
public string? PositionName { get; set; } = string.Empty;
[Comment("ระดับผู้ยื่นขอ")]
public string? PositionLevelName { get; set; } = string.Empty;
[Comment("สังกัดผู้ยื่นขอ")]
public string? OrganizationName { get; set; } = string.Empty;
}
}