ออกคำสั่ง
This commit is contained in:
parent
604b234c4b
commit
1290da7211
14 changed files with 1979 additions and 2004 deletions
|
|
@ -0,0 +1,25 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Discipline.Service.Requests
|
||||
{
|
||||
public class ReportAttachmentRequest
|
||||
{
|
||||
public ReportAttachmentRequestObj[] refIds { get; set; }
|
||||
}
|
||||
public class ReportAttachmentRequestObj
|
||||
{
|
||||
public string? refId { get; set; }
|
||||
public int? Sequence { get; set; }
|
||||
public string? CitizenId { get; set; }
|
||||
public string? Prefix { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public double? Amount { get; set; }
|
||||
public double? PositionSalaryAmount { get; set; }
|
||||
public double? MouthSalaryAmount { get; set; }
|
||||
public string? RemarkHorizontal { get; set; }
|
||||
public string? RemarkVertical { get; set; }
|
||||
public int CommandYear { get; set; }
|
||||
}
|
||||
}
|
||||
21
BMA.EHR.Discipline.Service/Requests/ReportExecuteRequest.cs
Normal file
21
BMA.EHR.Discipline.Service/Requests/ReportExecuteRequest.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Discipline.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; }
|
||||
public double? amount { get; set; }
|
||||
public double? positionSalaryAmount { get; set; }
|
||||
public double? mouthSalaryAmount { get; set; }
|
||||
}
|
||||
}
|
||||
10
BMA.EHR.Discipline.Service/Requests/ReportPersonRequest.cs
Normal file
10
BMA.EHR.Discipline.Service/Requests/ReportPersonRequest.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Discipline.Service.Requests
|
||||
{
|
||||
public class ReportPersonRequest
|
||||
{
|
||||
public string[] refIds { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue