ระบบลาออกเพิ่มstepยับยั้ง
This commit is contained in:
parent
069ee389e0
commit
27724dffb5
3 changed files with 146 additions and 0 deletions
|
|
@ -39,6 +39,19 @@ namespace BMA.EHR.Domain.Models.Retirement
|
|||
public string? RejectReason { get; set; }
|
||||
[Comment("สถานะการใช้งาน")]
|
||||
public bool IsActive { get; set; } = true;
|
||||
[Comment("สถานะยับยั้งผู้ดูแล")]
|
||||
public bool? OligarchReject { get; set; }
|
||||
[Comment("เหตุผลยับยั้งผู้ดูแล")]
|
||||
public string? OligarchRejectReason { get; set; }
|
||||
[Comment("วันที่ยับยั้งผู้ดูแล")]
|
||||
public DateTime? OligarchRejectDate { get; set; }
|
||||
[Comment("สถานะยับยั้งผู้บังคับบัญชา")]
|
||||
public bool? CommanderReject { get; set; }
|
||||
[Comment("เหตุผลยับยั้งผู้บังคับบัญชา")]
|
||||
public string? CommanderRejectReason { get; set; }
|
||||
[Comment("วันที่ยับยั้งผู้บังคับบัญชา")]
|
||||
public DateTime? CommanderRejectDate { get; set; }
|
||||
|
||||
public virtual List<RetirementResignDoc> RetirementResignDocs { get; set; } = new List<RetirementResignDoc>();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue