เพิ่ม api แสดงข้อมูลเงินเดือนที่บันทึกในระบบสรรหา
This commit is contained in:
parent
f80c1ca295
commit
72c53c2e42
6 changed files with 236 additions and 67 deletions
25
BMA.EHR.Command.Service/Responses/CommandReceiverResponse.cs
Normal file
25
BMA.EHR.Command.Service/Responses/CommandReceiverResponse.cs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
namespace BMA.EHR.Command.Service.Responses
|
||||
{
|
||||
public class CommandReceiverResponse
|
||||
{
|
||||
public Guid RefRecordId { get; set; } = Guid.Empty;
|
||||
|
||||
public Guid PersonalId { get; set; } = Guid.Empty;
|
||||
|
||||
public int Sequence { get; set; } = 0;
|
||||
|
||||
public string IdCard { get; set; } = string.Empty;
|
||||
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
public bool SelectStatus { get; set; } = true;
|
||||
|
||||
public string Education { get; set; } = string.Empty;
|
||||
|
||||
public double SalaryAmount { get; set; } = 0;
|
||||
|
||||
public double PositionSalaryAmount { get; set; } = 0;
|
||||
|
||||
public double MonthSalaryAmount { get; set; } = 0;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue