แก้บันทึกพ้นราชการ (ยังไม่เสร็จ)
This commit is contained in:
parent
e55c0f746b
commit
2e7abdb60a
13 changed files with 12478 additions and 189 deletions
23
BMA.EHR.Domain/Models/Retirement/RetirementPeriodHistory.cs
Normal file
23
BMA.EHR.Domain/Models/Retirement/RetirementPeriodHistory.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Retirement
|
||||
{
|
||||
public class RetirementPeriodHistory : EntityBase
|
||||
{
|
||||
[Comment("ครั้งที่")]
|
||||
public int Round { get; set; }
|
||||
[Comment("ประเภทคำสั่ง")]
|
||||
public string? TypeReport { get; set; } = string.Empty;
|
||||
[Comment("ปีงบประมาณ")]
|
||||
public int Year { get; set; }
|
||||
[Comment("จำนวนคน")]
|
||||
public int Total { get; set; }
|
||||
[Comment("ประเภท")]
|
||||
public string Type { get; set; } = string.Empty;
|
||||
[Comment("รายชื่อเกษียญ")]
|
||||
public string ProfileFile { get; set; }
|
||||
public RetirementPeriod RetirementPeriod { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue