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,14 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Insignia.Service.Requests
{
public class ImportInvoiceRequest
{
public string? CitizanId { get; set; }
public string? Number { get; set; }
public DateTime? DatePayment { get; set; }
public string? TypePayment { get; set; }
public string? Address { get; set; }
}
}