fix : เครื่องราชย์ + บันทึกเครื่องราชย์

This commit is contained in:
Suphonchai Phoonsawat 2024-06-28 12:27:55 +07:00
parent def2b8f7fe
commit 26ccf67dad
5 changed files with 92 additions and 5 deletions

View file

@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Application.Responses.Insignias
{
public class PostProfileInsigniaDto
{
public Guid ProfileId { get; set; }
public int Year { get; set; } = 0;
public string No { get; set; } = string.Empty;
public string Volume { get; set; } = string.Empty;
public string Section { get; set; } = string.Empty;
public string Page { get; set; } = string.Empty;
public DateTime ReceiveDate { get; set; } = DateTime.MinValue;
public Guid InsigniaId { get; set; }
public DateTime DateAnnounce { get; set; } = DateTime.MinValue;
public string Issue { get; set; } = string.Empty;
public string VolumeNo { get; set; } = string.Empty;
public DateTime? RefCommandDate { get; set; }
public string RefCommandNo { get; set; } = string.Empty;
public string Note { get; set; } = string.Empty;
}
}