เพิ่ม API การเจ้าหน้าที่แก้ไขข้อมูลการขอลาออกได้หาก สถานะเป็น ใหม่ (NEW) #1714
Some checks failed
release-dev / release-dev (push) Failing after 11s

This commit is contained in:
Bright 2025-07-31 14:52:04 +07:00
parent e3a57b0159
commit 23d86f632e
3 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,14 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementUpdateResignInfoRequest
{
public string? Location { get; set; }
public string? ReasonResign { get; set; }
public string? Remark { get; set; }
public DateTime? SendDate { get; set; }
public DateTime? ActiveDate { get; set; }
}
}