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; }
|
||||
}
|
||||
}
|
||||
|
|
@ -39,6 +39,7 @@
|
|||
public static readonly string RelationshipNotFound = "ไม่พบข้อมูลความสัมพันธ์";
|
||||
public static readonly string BloodGroupNotFound = "ไม่พบข้อมูลกลุ่มเลือก";
|
||||
public static readonly string ReligionNotFound = "ไม่พบข้อมูลศาสนา";
|
||||
public static readonly string InsigniaNotFound = "ไม่พบข้อมูลเครื่องราชย์ฯ";
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
@ -75,8 +76,10 @@
|
|||
|
||||
#region " Insignia "
|
||||
public static readonly string InsigniaDupicate = "มีการยื่นรอบรอบนี้ในปีนี้ไว้อยู่แล้ว";
|
||||
public static readonly string InsigniaRequestNotFound = "ไม่พบข้อมูลการยื่นขอพระราชทานเครื่องราชย์ของหน่วยงานที่ระบุ!!";
|
||||
public static readonly string InsigniaPeriodNotFound = "ไม่พบรอบการยื่นขอพระราชทานเครื่องราชย์อิสริยาภรณ์";
|
||||
public static readonly string InsigniaManageDupicate = "มีการกำหนดจัดสรรเครื่องราชย์ฯ รอบนี้ในปีนี้ไว้อยู่แล้ว";
|
||||
public static readonly string InsigniaRequestNotFound = "ไม่พบข้อมูลการยื่นขอพระราชทานเครื่องราชย์ฯ ของหน่วยงานที่ระบุ!!";
|
||||
public static readonly string InsigniaPeriodNotFound = "ไม่พบรอบการยื่นขอพระราชทานเครื่องราชย์อิสริยาภรณ์ฯ ";
|
||||
public static readonly string InsigniaManageNotFound = "ไม่พบจัดสรรเครื่องราชย์ฯ ที่ระบุ";
|
||||
public static readonly string CoinPeriodNotFound = "ไม่พบรอบการขอพระราชทานเหรียญจักรพรรดิมาลาที่ระบุ!!";
|
||||
public static readonly string OCNotFound = "ไม่พบหน่วยงานที่ระบุในระบบ";
|
||||
#endregion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue