เพิ่มคำสั่งยกเลิกลา

This commit is contained in:
Kittapath 2024-07-18 20:37:17 +07:00
parent bcf0c0bfdb
commit 033fc915d0
12 changed files with 19309 additions and 88 deletions

View file

@ -0,0 +1,16 @@
namespace BMA.EHR.Application.Responses.Reports
{
public class CommandType40Response
{
public string? no { get; set; } = string.Empty;
public string? fullName { get; set; } = string.Empty;
public string? organization { get; set; } = string.Empty;
public string? position { get; set; } = string.Empty;
public string? postype { get; set; } = string.Empty;
public string? poslevel { get; set; } = string.Empty;
public string? organizationNew { get; set; } = string.Empty;
public string? dateStart { get; set; } = string.Empty;
public string? dateEnd { get; set; } = string.Empty;
public string? order { get; set; } = string.Empty;
}
}