api จัดสรรเครื่องราช
This commit is contained in:
parent
d30030141a
commit
d5ffd5cb08
9 changed files with 15307 additions and 3 deletions
21
BMA.EHR.Domain/Models/Insignias/InsigniaManage.cs
Normal file
21
BMA.EHR.Domain/Models/Insignias/InsigniaManage.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using BMA.EHR.Domain.Models.Documents;
|
||||
using BMA.EHR.Domain.Models.MetaData;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Insignias
|
||||
{
|
||||
public class InsigniaManage : EntityBase
|
||||
{
|
||||
[Comment("ชื่อเครื่องราช")]
|
||||
public Insignia Insignia { get; set; }
|
||||
[Comment("ปี")]
|
||||
public int Year { get; set; }
|
||||
[Comment("จำนวนทั้งหมด")]
|
||||
public int Total { get; set; }
|
||||
[Comment("ประเภทเครื่องราช")]
|
||||
public string Type { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue