26 lines
933 B
C#
26 lines
933 B
C#
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 string? commandNo { get; set; }
|
|
public int commandYear { get; set; }
|
|
public string? commandId { get; set; }
|
|
public string? remark { get; set; }
|
|
public double? amount { get; set; }
|
|
public double? amountSpecial { get; set; }
|
|
public double? positionSalaryAmount { get; set; }
|
|
public double? mouthSalaryAmount { get; set; }
|
|
public string? commandCode { get; set; }
|
|
public string? commandName { get; set; }
|
|
public DateTime commandDateAffect { get; set; }
|
|
public DateTime commandDateSign { get; set; }
|
|
}
|
|
}
|