ออกคำสั่ง 01 02

This commit is contained in:
kittapath 2024-10-01 23:34:01 +07:00
parent d3d7179c48
commit 938bfe0c4f
3 changed files with 240 additions and 0 deletions

View file

@ -0,0 +1,18 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class ReportExecuteRequest
{
public ReportExecuteRequestObj[] refIds { get; set; }
}
public class ReportExecuteRequestObj
{
public string? refId { get; set; }
public DateTime commandAffectDate { get; set; }
public string? commandNo { get; set; }
public int commandYear { get; set; }
public string? templateDoc { get; set; }
}
}