no message

This commit is contained in:
kittapath 2024-10-03 14:58:01 +07:00
parent 569f0f7fd9
commit 93f8fa5832

View file

@ -3,19 +3,22 @@ using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests namespace BMA.EHR.Placement.Service.Requests
{ {
public class ReportExecuteRequest public class ReportAttachmentRequest
{ {
public ReportExecuteRequestObj[] refIds { get; set; } public ReportAttachmentRequestObj[] refIds { get; set; }
} }
public class ReportExecuteRequestObj public class ReportAttachmentRequestObj
{ {
public string? refId { get; set; } public int? Sequence { get; set; }
public DateTime commandAffectDate { get; set; } public string? CitizenId { get; set; }
public string? commandNo { get; set; } public string? Prefix { get; set; }
public int commandYear { get; set; } public string? FirstName { get; set; }
public string? templateDoc { get; set; } public string? LastName { get; set; }
public double? amount { get; set; } public double? amount { get; set; }
public double? positionSalaryAmount { get; set; } public double? positionSalaryAmount { get; set; }
public double? mouthSalaryAmount { get; set; } public double? mouthSalaryAmount { get; set; }
public string? RemarkHorizontal { get; set; }
public string? RemarkVertical { get; set; }
} }
} }