hrms-api-backend/BMA.EHR.Discipline.Service/Requests/ReportPersonRequest.cs
harid 8950073485
All checks were successful
Build & Deploy Discipline Service / build (push) Successful in 1m56s
ส่งรายชื่อไปออกคำสั่ง C-PM-25, C-PM-26 ให้ปั๊ม commandCode #2377
2026-04-03 16:03:01 +07:00

19 lines
513 B
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class ReportPersonRequest
{
public string[] refIds { get; set; }
public string? status { get; set; }
}
public class ReportPersonAndCommandRequest
{
public string[] refIds { get; set; }
public string? status { get; set; }
public string? commandTypeId { get; set; }
public string? commandCode { get; set; }
}
}