api บันทึกเครื่องราช

This commit is contained in:
Kittapath 2023-08-23 20:30:30 +07:00
parent 9abb9c5422
commit 51bdcf4041
50 changed files with 162548 additions and 111 deletions

View file

@ -1,6 +1,7 @@
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
{
@ -18,6 +19,8 @@ namespace BMA.EHR.Domain.Models.Retirement
public string Type { get; set; } = string.Empty;
[Comment("รายชื่อเกษียญ")]
public string ProfileFile { get; set; }
[Comment("เอกสารประกาศ")]
public Document? Document { get; set; }
public RetirementPeriod RetirementPeriod { get; set; }
}
}