hrms-api-backend/BMA.EHR.Placement.Service/Requests/ReportAttachmentRequest.cs

27 lines
936 B
C#
Raw Permalink Normal View History

2024-10-03 14:52:39 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
2024-10-03 14:58:01 +07:00
public class ReportAttachmentRequest
2024-10-03 14:52:39 +07:00
{
2024-10-03 14:58:01 +07:00
public ReportAttachmentRequestObj[] refIds { get; set; }
2024-10-03 14:52:39 +07:00
}
2024-10-03 14:58:01 +07:00
public class ReportAttachmentRequestObj
2024-10-03 14:52:39 +07:00
{
public string? refId { get; set; }
2024-10-03 14:58:01 +07:00
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; }
2024-10-03 14:58:01 +07:00
public string? RemarkHorizontal { get; set; }
public string? RemarkVertical { get; set; }
public int CommandYear { get; set; }
2024-11-08 13:16:14 +07:00
public DateTime? CommandExcecuteDate { get; set; }
2024-10-03 14:52:39 +07:00
}
}