26 lines
1 KiB
C#
26 lines
1 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.Documents;
|
|
|
|
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; }
|
|
[Comment("เอกสารประกาศ")]
|
|
public Document? Document { get; set; }
|
|
public RetirementPeriod RetirementPeriod { get; set; }
|
|
}
|
|
}
|