แก้ บันทึกวันที่สร้าง บันทึกค่าผิดฟิว

This commit is contained in:
Kittapath 2023-09-08 12:17:15 +07:00
parent a886825bb1
commit 42b1ae87fa
26 changed files with 252 additions and 136 deletions

View file

@ -8,15 +8,19 @@ namespace BMA.EHR.Domain.Models.Insignias
{
public class InsigniaPeriod : EntityBase
{
[MaxLength(200)]
[MaxLength(200), Comment("ชื่อรอบเสนอขอเครื่องราชฯ")]
public string? Name { get; set; }
[Comment("ปี")]
public int Year { get; set; }
[Comment("วันที่เริ่ม")]
public DateTime StartDate { get; set; }
[Comment("วันที่สิ้นสุด")]
public DateTime EndDate { get; set; }
[MaxLength(50)]
[MaxLength(50), Comment("จำนวนวันแจ้งเตือนล่วงหน้า")]
public int Amount { get; set; }
[MaxLength(10)]
[MaxLength(10), Comment("ประเภทการขอ")]
public string? Type { get; set; }
[Comment("Fk table Document")]
public Document? ReliefDoc { get; set; }
[Comment("ราบการยื่นขอ")]
public int Round { get; set; } = 1;