20 lines
864 B
C#
20 lines
864 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
namespace BMA.EHR.Domain.Models.Retirement
|
|
{
|
|
public class RetirementPeriod : EntityBase
|
|
{
|
|
[Comment("ครั้งที่")]
|
|
public int Round { get; set; }
|
|
[Comment("ประเภทคำสั่ง")]
|
|
public string? TypeReport { get; set; } = string.Empty;
|
|
[Comment("ปีงบประมาณ")]
|
|
public int Year { get; set; }
|
|
[Comment("ประเภท")]
|
|
public string Type { get; set; } = string.Empty;
|
|
public virtual List<RetirementPeriodHistory> RetirementPeriodHistorys { get; set; } = new List<RetirementPeriodHistory>();
|
|
public virtual List<RetirementProfile> RetirementProfiles { get; set; } = new List<RetirementProfile>();
|
|
}
|
|
}
|