retire add approve
This commit is contained in:
parent
8ce58201e9
commit
2b8713cbe0
19 changed files with 22944 additions and 43 deletions
|
|
@ -0,0 +1,29 @@
|
|||
using BMA.EHR.Domain.Models.Base;
|
||||
namespace BMA.EHR.Domain.Models.Retirement
|
||||
|
||||
{
|
||||
public class RetirementResignCancelApprover : EntityBase
|
||||
{
|
||||
public RetirementResignCancel RetirementResignCancel { get; set; }
|
||||
|
||||
public int Seq { get; set; } = 0;
|
||||
|
||||
public string Prefix { get; set; } = string.Empty;
|
||||
|
||||
public string FirstName { get; set; } = string.Empty;
|
||||
|
||||
public string LastName { get; set; } = string.Empty;
|
||||
|
||||
public string PositionName { get; set; } = string.Empty;
|
||||
|
||||
public Guid ProfileId { get; set; } = Guid.Empty;
|
||||
|
||||
public Guid KeycloakId { get; set; } = Guid.Empty;
|
||||
|
||||
public string ApproveStatus { get; set; } = string.Empty;
|
||||
|
||||
public string Comment { get; set; } = string.Empty;
|
||||
|
||||
public string? ApproveType { get; set; } = string.Empty; // ผู้บังคับบัญชา = commander, ผู้มีอำนาจอนุมัติ = Approver
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue