hrms-api-backend/BMA.EHR.OrganizationEmployee.Service/Requests/PersonAddressRequest.cs
2023-09-15 14:32:57 +07:00

44 lines
2 KiB
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.OrganizationEmployee.Service.Requests
{
public class PersonAddressRequest
{
public string? Agency { get; set; }
public string? ConditionNote { get; set; }
public string? Department { get; set; }
public string? Government { get; set; }
public bool? IsActive { get; set; }
public bool? IsCondition { get; set; }
public bool? IsDirector { get; set; }
public string? OrganizationUserNote { get; set; }
public string? Qualification { get; set; }
public string? Pile { get; set; }
public string? PosNo { get; set; }
public string? PositionCondition { get; set; }
public string? PositionMasterUserNote { get; set; }
public string? OrganizationOrder { get; set; }
public string? OrganizationShortName { get; set; }
public Guid? OrganizationId { get; set; }
public Guid? OrganizationFaxId { get; set; }
public Guid? OrganizationLevelId { get; set; }
public Guid? OrganizationOrganizationId { get; set; }
public Guid? OrganizationTelExternalId { get; set; }
public Guid? OrganizationTelInternalId { get; set; }
public Guid? OrganizationTypeId { get; set; }
public Guid? PositionEmployeeStatusId { get; set; }
// public Guid? PositionEmployeeTypeId { get; set; }
// public Guid? PositionEmployeeExecutiveId { get; set; }
public Guid? PositionEmployeeLineId { get; set; }
public Guid? PositionEmployeePositionId { get; set; }
// public Guid? PositionEmployeeExecutiveSideId { get; set; }
public Guid? OrganizationAgencyId { get; set; }
public Guid? OrganizationGovernmentAgencyId { get; set; }
public Guid? OrganizationShortNameId { get; set; }
public Guid[] PositionEmployeeLevelsId { get; set; }
public Guid[] PositionEmployeePositionSidesId { get; set; }
}
}