api บันทึกเครื่องราช

This commit is contained in:
Kittapath 2023-08-23 20:30:30 +07:00
parent 9abb9c5422
commit 51bdcf4041
50 changed files with 162548 additions and 111 deletions

View file

@ -0,0 +1,23 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Insignia.Service.Requests
{
public class InsigniaNoteRequest
{
public string CitizanId { get; set; }
public Guid? InsigniaId { get; set; }
public string? Issue { get; set; }
public string? Number { get; set; }
public DateTime? DateReceive { 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; }
public DateTime? DatePayment { get; set; }
public string? TypePayment { get; set; }
public string? Address { get; set; }
}
}