API ขอลาออกและโอนออก ฝั่ง admin #2196
All checks were successful
Build & Deploy Placement Service / build (push) Successful in 1m22s
Build & Deploy Retirement Service / build (push) Successful in 1m23s

This commit is contained in:
harid 2026-01-16 15:43:55 +07:00
parent 64c1021c52
commit 094789bfb1
6 changed files with 468 additions and 0 deletions

View file

@ -20,4 +20,21 @@ namespace BMA.EHR.Retirement.Service.Requests
public double? AmountOld { get; set; }
public List<FormFile>? File { get; set; }
}
public class RetirementResignAdminRequest
{
public string ProfileId { get; set; }
public string? Location { get; set; }
public DateTime? ActiveDate { get; set; }
public string? Reason { get; set; }
public string? Remark { get; set; }
public string? ReasonResign { get; set; }
public string? OrganizationPositionOld { get; set; }
public string? PositionExecutiveOld { get; set; }
public string? PositionTypeOld { get; set; }
public string? PositionLevelOld { get; set; }
public string? PositionNumberOld { get; set; }
public string? RemarkHorizontal { get; set; }
public double? AmountOld { get; set; }
public List<FormFile>? File { get; set; }
}
}