ออกคำสั่งเงินเดือน

This commit is contained in:
Kittapath 2024-04-26 10:18:59 +07:00
parent b89c3301e3
commit 66c97a162b
14 changed files with 53814 additions and 1 deletions

View file

@ -0,0 +1,20 @@
namespace BMA.EHR.Application.Responses
{
public class PassSalaryResponse
{
// public bool successful { get; set; }
public List<SalaryDataResponse> result { get; set; } = new();
}
public class SalaryDataResponse
{
public Guid id { get; set; } = Guid.Empty;
public string citizenId { get; set; } = string.Empty;
public string prefix { get; set; } = string.Empty;
public string firstName { get; set; } = string.Empty;
public string lastName { get; set; } = string.Empty;
public Guid? profileId { get; set; } = Guid.Empty;
// public Guid? commandId { get; set; } = Guid.Empty;
}
}