ลาออกลูกจ้าง

This commit is contained in:
kittapath 2024-11-08 16:58:53 +07:00
parent 8e4ed43a9d
commit 0f75dad798
14 changed files with 21151 additions and 714 deletions

View file

@ -0,0 +1,20 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementResignEmployeeRequest
{
public string? Location { get; set; }
// public DateTime? SendDate { get; set; }
public DateTime? ActiveDate { get; set; }
public string? Reason { get; set; }
public string? OrganizationPositionOld { 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; }
}
}