api เลือกตำแหน่ง

This commit is contained in:
Kittapath 2023-07-05 10:56:13 +07:00
parent 2f49a5b87e
commit 0c56512f54
4 changed files with 106 additions and 30 deletions

View file

@ -0,0 +1,20 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PersonSelectPositionRequest
{
public Guid? PersonalId { get; set; }
public DateTime? ContainDate { get; set; }
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? SalaryAmount { get; set; }
public double? MouthSalaryAmount { get; set; }
public double? PositionSalaryAmount { get; set; }
}
}