2023-08-05 17:53:07 +07:00
|
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class PersonSelectPositionReceiveRequest
|
|
|
|
|
{
|
2024-05-09 12:53:07 +07:00
|
|
|
// public DateTime? reportingDate { get; set; }
|
2024-05-02 09:31:38 +07:00
|
|
|
// public Guid? PosNoId { get; set; }
|
|
|
|
|
// public Guid? PositionId { get; set; }
|
|
|
|
|
// public Guid? PositionLevelId { get; set; }
|
|
|
|
|
// public Guid? PositionLineId { get; set; }
|
|
|
|
|
// public Guid? PositionPathSideId { get; set; }
|
|
|
|
|
// public Guid? PositionTypeId { get; set; }
|
|
|
|
|
public double? Amount { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? posmasterId { get; set; }
|
|
|
|
|
public Guid? personalId { get; set; }
|
|
|
|
|
public DateTime? reportingDate { get; set; }
|
|
|
|
|
public int? node { get; set; }
|
|
|
|
|
public Guid? nodeId { get; set; }
|
|
|
|
|
public string? orgRevisionId { get; set; }
|
|
|
|
|
public int? posMasterNo { get; set; }
|
|
|
|
|
public string? positionId { get; set; }
|
2024-06-14 17:26:15 +07:00
|
|
|
public string? positionName { get; set; }
|
2024-05-02 09:31:38 +07:00
|
|
|
public string? positionField { get; set; }
|
|
|
|
|
public string? posTypeId { get; set; }
|
|
|
|
|
public string? posTypeName { get; set; }
|
|
|
|
|
public string? posLevelId { get; set; }
|
|
|
|
|
public string? posLevelName { get; set; }
|
|
|
|
|
public string? typeCommand { get; set; }
|
2025-03-24 16:33:46 +07:00
|
|
|
public string? posExecutiveName { get; set; }
|
2025-06-16 12:10:50 +07:00
|
|
|
public string? positionExecutiveField { get; set; }
|
|
|
|
|
public string? positionArea { get; set; }
|
2023-08-05 17:53:07 +07:00
|
|
|
}
|
|
|
|
|
}
|