2024-10-04 15:36:34 +07:00
|
|
|
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; }
|
2025-02-21 19:11:20 +07:00
|
|
|
public string? commandId { get; set; }
|
|
|
|
|
public string? remark { get; set; }
|
2024-10-04 15:36:34 +07:00
|
|
|
public double? amount { get; set; }
|
2025-01-21 11:30:51 +07:00
|
|
|
public double? amountSpecial { get; set; }
|
2024-10-04 15:36:34 +07:00
|
|
|
public double? positionSalaryAmount { get; set; }
|
|
|
|
|
public double? mouthSalaryAmount { get; set; }
|
2025-02-21 19:11:20 +07:00
|
|
|
public string? commandCode { get; set; }
|
|
|
|
|
public string? commandName { get; set; }
|
|
|
|
|
public DateTime commandDateAffect { get; set; }
|
|
|
|
|
public DateTime commandDateSign { get; set; }
|
2024-10-04 15:36:34 +07:00
|
|
|
}
|
|
|
|
|
}
|