เพิ่มรับคืนเครื่องราช
This commit is contained in:
parent
59f782e8cf
commit
1619a502d4
22 changed files with 33518 additions and 41 deletions
|
|
@ -4,6 +4,7 @@ using BMA.EHR.Domain.Models.Base;
|
|||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using BMA.EHR.Domain.Models.HR;
|
||||
using BMA.EHR.Domain.Models.Documents;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Insignias
|
||||
{
|
||||
|
|
@ -40,6 +41,18 @@ namespace BMA.EHR.Domain.Models.Insignias
|
|||
public string? Address { get; set; }
|
||||
[Comment("ทะเบียนฐานันดร")]
|
||||
public string? Issue { get; set; }
|
||||
[Comment("วันที่รับเครื่องราชฯ")]
|
||||
public DateTime? DateReceiveInsignia { get; set; }
|
||||
[Comment("หลักฐานรับเครื่องราชฯ")]
|
||||
public Document? DocReceiveInsignia { get; set; }
|
||||
[Comment("หน่วยงานรับเครื่องราชฯ")]
|
||||
public OrganizationOrganization? OrgReceiveInsignia { get; set; }
|
||||
[Comment("วันที่คืนเครื่องราชฯ")]
|
||||
public DateTime? DateReturnInsignia { get; set; }
|
||||
[Comment("หลักฐานคืนเครื่องราชฯ")]
|
||||
public Document? DocReturnInsignia { get; set; }
|
||||
[Comment("หน่วยงานคืนเครื่องราชฯ")]
|
||||
public OrganizationOrganization? OrgReturnInsignia { get; set; }
|
||||
public Profile Profile { get; set; }
|
||||
public Insignia RequestInsignia { get; set; }
|
||||
public InsigniaNote InsigniaNote { get; set; }
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ using BMA.EHR.Domain.Models.Base;
|
|||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using BMA.EHR.Domain.Models.Organizations;
|
||||
using BMA.EHR.Domain.Models.Documents;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Insignias
|
||||
{
|
||||
|
|
@ -18,6 +19,8 @@ namespace BMA.EHR.Domain.Models.Insignias
|
|||
public InsigniaPeriod Period { get; set; }
|
||||
|
||||
public OrganizationEntity Organization { get; set; }
|
||||
[Comment("Fk Id Document")]
|
||||
public Document? Document { get; set; }
|
||||
|
||||
public virtual List<InsigniaRequestProfile> RequestProfiles { get; set; } = new List<InsigniaRequestProfile>();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@ namespace BMA.EHR.Domain.Models.Insignias
|
|||
public string Status { get; set; } = "PENDING";
|
||||
|
||||
[Comment("เหตุผลไม่ยื่นขอ")]
|
||||
public string? ReasonReject { get; set; }
|
||||
|
||||
[Comment("เหตุผลการได้รับเครื่องราชฯ")]
|
||||
public string? Reason { get; set; }
|
||||
|
||||
public Profile Profile { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue