21 lines
685 B
C#
21 lines
685 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Command.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; }
|
|
}
|
|
}
|