ออกคำสั่งเงินเดือน
This commit is contained in:
parent
b89c3301e3
commit
66c97a162b
14 changed files with 53814 additions and 1 deletions
20
BMA.EHR.Application/Responses/PassSalaryResponse.cs
Normal file
20
BMA.EHR.Application/Responses/PassSalaryResponse.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue