เพิ่มเงื่อนไขเช็คคำสั่งแสดงสังกัด

This commit is contained in:
Kittapath 2023-10-10 16:27:54 +07:00
parent 39cc6be653
commit a969441f02
4 changed files with 118 additions and 82 deletions

View file

@ -5,6 +5,7 @@ using BMA.EHR.Domain.Models.MetaData;
using BMA.EHR.Domain.Models.Organizations;
using BMA.EHR.Domain.Models.Commands.Core;
using BMA.EHR.Domain.Models.HR;
using BMA.EHR.Domain.Models.OrganizationEmployee;
namespace BMA.EHR.Domain.Models.Placement
{
@ -82,6 +83,10 @@ namespace BMA.EHR.Domain.Models.Placement
public CommandType? CommandType { get; set; }
[Comment("ดำรงตำแหน่งในระดับปัจจุบันเมื่อ")]
public DateTime? PositionDate { get; set; }
public OrgEmployee? OrgEmployee { get; set; }
public PositionEmployeeStatus? PositionEmployeeStatus { get; set; }
public PositionEmployeeLine? PositionEmployeeLine { get; set; }
public PositionEmployeePosition? PositionEmployeePosition { get; set; }
public virtual List<PlacementAppointmentDoc> PlacementAppointmentDocs { get; set; } = new List<PlacementAppointmentDoc>();
}
}