2024-10-01 23:34:01 +07:00
|
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.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; }
|
2024-10-18 16:11:47 +07:00
|
|
|
public string? commandId { get; set; }
|
2024-10-01 23:34:01 +07:00
|
|
|
public int commandYear { get; set; }
|
|
|
|
|
public string? templateDoc { get; set; }
|
2024-10-02 11:25:45 +07:00
|
|
|
public double? amount { get; set; }
|
2024-12-06 18:38:36 +07:00
|
|
|
public double? amountSpecial { get; set; }
|
2024-10-02 11:25:45 +07:00
|
|
|
public double? positionSalaryAmount { get; set; }
|
|
|
|
|
public double? mouthSalaryAmount { get; set; }
|
2025-01-09 11:50:36 +07:00
|
|
|
public string? refCommandCode { get; set; }
|
|
|
|
|
public string? refCommandName { get; set; }
|
2024-10-01 23:34:01 +07:00
|
|
|
}
|
|
|
|
|
}
|