แก้บั้นทึกเครื่องราชย์ไป กพ7 ใหม่

This commit is contained in:
Suphonchai Phoonsawat 2024-07-01 21:44:11 +07:00
parent 6c42209217
commit 38be118e15
3 changed files with 43 additions and 47 deletions

View file

@ -1,39 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Application.Responses.Insignias
namespace BMA.EHR.Application.Responses.Insignias
{
public class PostProfileInsigniaDto
{
public Guid ProfileId { get; set; }
public Guid profileId { get; set; }
public int Year { get; set; } = 0;
public int year { get; set; } = 0;
public string No { get; set; } = string.Empty;
public string no { get; set; } = string.Empty;
public string Volume { get; set; } = string.Empty;
public string volume { get; set; } = string.Empty;
public string Section { get; set; } = string.Empty;
public string section { get; set; } = string.Empty;
public string Page { get; set; } = string.Empty;
public string page { get; set; } = string.Empty;
public DateTime ReceiveDate { get; set; } = DateTime.MinValue;
public DateTime receiveDate { get; set; } = DateTime.MinValue;
public Guid InsigniaId { get; set; }
public Guid insigniaId { get; set; }
public DateTime DateAnnounce { get; set; } = DateTime.MinValue;
public DateTime dateAnnounce { get; set; } = DateTime.MinValue;
public string Issue { get; set; } = string.Empty;
public string issue { get; set; } = string.Empty;
public string VolumeNo { get; set; } = string.Empty;
public string volumeNo { get; set; } = string.Empty;
public DateTime? RefCommandDate { get; set; }
public DateTime? refCommandDate { get; set; }
public string RefCommandNo { get; set; } = string.Empty;
public string refCommandNo { get; set; } = string.Empty;
public string Note { get; set; } = string.Empty;
public string note { get; set; } = string.Empty;
}
}