2023-08-08 11:04:41 +07:00
|
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class RetirementResignRequest
|
|
|
|
|
{
|
|
|
|
|
public string? Location { get; set; }
|
2024-10-21 14:33:52 +07:00
|
|
|
// public DateTime? SendDate { get; set; }
|
2023-08-08 11:04:41 +07:00
|
|
|
public DateTime? ActiveDate { get; set; }
|
|
|
|
|
public string? Reason { get; set; }
|
2024-12-13 21:39:00 +07:00
|
|
|
public string? Remark { get; set; }
|
2025-01-13 16:52:51 +07:00
|
|
|
public string? ReasonResign { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
public string? OrganizationPositionOld { get; set; }
|
2025-03-21 18:08:41 +07:00
|
|
|
public string? PositionExecutiveOld { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
public string? PositionTypeOld { get; set; }
|
|
|
|
|
public string? PositionLevelOld { get; set; }
|
|
|
|
|
public string? PositionNumberOld { get; set; }
|
2023-10-08 12:41:53 +07:00
|
|
|
public string? RemarkHorizontal { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
public double? AmountOld { get; set; }
|
2023-08-23 20:30:30 +07:00
|
|
|
public List<FormFile>? File { get; set; }
|
2023-08-08 11:04:41 +07:00
|
|
|
}
|
2026-01-16 15:43:55 +07:00
|
|
|
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; }
|
|
|
|
|
}
|
2023-08-08 11:04:41 +07:00
|
|
|
}
|