2025-05-07 14:17:28 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
namespace BMA.EHR.Domain.Models.Retirement
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RetirementResignEmployeeApprover : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public RetirementResignEmployee RetirementResignEmployee { 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;
|
|
|
|
|
|
|
2025-07-25 13:44:53 +07:00
|
|
|
|
public string PositionExecutiveName { get; set; } = string.Empty;
|
|
|
|
|
|
|
2025-05-07 14:17:28 +07:00
|
|
|
|
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;
|
2025-05-07 17:13:57 +07:00
|
|
|
|
public string Org { get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime? RejectDate { get; set; }
|
2025-05-07 14:17:28 +07:00
|
|
|
|
|
|
|
|
|
|
public string? ApproveType { get; set; } = string.Empty; // ผู้บังคับบัญชา = commander, ผู้มีอำนาจอนุมัติ = Approver
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|