เพิ่ม api แสดงข้อมูลเงินเดือนที่บันทึกในระบบสรรหา
This commit is contained in:
parent
f80c1ca295
commit
72c53c2e42
6 changed files with 236 additions and 67 deletions
11
BMA.EHR.Application/Responses/CommandInfoResponse.cs
Normal file
11
BMA.EHR.Application/Responses/CommandInfoResponse.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace BMA.EHR.Application.Responses
|
||||
{
|
||||
public class CommandInfoResponse
|
||||
{
|
||||
public string OrderNo { get; set; } = string.Empty;
|
||||
|
||||
public string OrderYear { get; set; } = string.Empty;
|
||||
|
||||
public DateTime SignDate { get; set; } = DateTime.Now;
|
||||
}
|
||||
}
|
||||
11
BMA.EHR.Application/Responses/PlacementSalaryResponse.cs
Normal file
11
BMA.EHR.Application/Responses/PlacementSalaryResponse.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace BMA.EHR.Application.Responses
|
||||
{
|
||||
public class PlacementSalaryResponse
|
||||
{
|
||||
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