ออกคำสั่ง 01 02
This commit is contained in:
parent
d3d7179c48
commit
938bfe0c4f
3 changed files with 240 additions and 0 deletions
18
BMA.EHR.Placement.Service/Requests/ReportExecuteRequest.cs
Normal file
18
BMA.EHR.Placement.Service/Requests/ReportExecuteRequest.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue