2023-08-07 14:57:23 +07:00
|
|
|
|
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;
|
|
|
|
|
|
|
2024-06-18 13:54:19 +07:00
|
|
|
|
public double PositionSalaryAmount { get; set; } = 0;
|
2023-08-07 14:57:23 +07:00
|
|
|
|
|
|
|
|
|
|
public double MonthSalaryAmount { get; set; } = 0;
|
2024-06-18 13:54:19 +07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string? Organization { get; set; }
|
|
|
|
|
|
public string? PositionName { get; set; }
|
|
|
|
|
|
public string? PositionLevel { get; set; }
|
|
|
|
|
|
public string? PositionType { get; set; }
|
|
|
|
|
|
public string? PositionNumber { get; set; }
|
|
|
|
|
|
public DateTime? BirthDate { get; set; }
|
2023-08-07 14:57:23 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|