retire add approve

This commit is contained in:
moss 2025-05-07 14:17:28 +07:00
parent 8ce58201e9
commit 2b8713cbe0
19 changed files with 22944 additions and 43 deletions

View file

@ -0,0 +1,28 @@
using Newtonsoft.Json;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementRequestApproverDto
{
[JsonProperty("seq")]
public int Seq { get; set; } = 0;
[JsonProperty("prefix")]
public string Prefix { get; set; } = string.Empty;
[JsonProperty("firstName")]
public string FirstName { get; set; } = string.Empty;
[JsonProperty("lastName")]
public string LastName { get; set; } = string.Empty;
[JsonProperty("positionName")]
public string PositionName { get; set; } = string.Empty;
[JsonProperty("profileId")]
public Guid ProfileId { get; set; } = Guid.Empty;
[JsonProperty("keycloakId")]
public Guid KeycloakId { get; set; } = Guid.Empty;
}
}