api import เครื่องราช,ใบกำกับ

This commit is contained in:
Kittapath 2023-08-24 19:23:33 +07:00
parent 9c610407f4
commit 69f23fd0cb
21 changed files with 47554 additions and 55 deletions

View file

@ -0,0 +1,23 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Insignia.Service.Requests
{
public class ImportReceiveRequest
{
public string? Number { get; set; }
public string? RequestInsignia { get; set; }
public string? CitizanId { get; set; }
public string? Prefix { get; set; }
public string? FullName { get; set; }
public string? Position { get; set; }
public DateTime? DateReceive { get; set; }
public string? OrgSend { get; set; }
public string? OrgReceive { get; set; }
public DateTime? Date { get; set; }
public string? VolumeNo { get; set; }
public string? Section { get; set; }
public string? Page { get; set; }
public string? No { get; set; }
}
}