hrms-api-report-v1/Models/HR/ProfileSalary.cs

25 lines
1 KiB
C#

using BMA.EHR.MetaData.Service.Models;
namespace BMA.EHR.Profile.Service.Models.HR
{
public class ProfileSalary : EntityBase
{
public DateTime? Date { get; set; }
public double? Amount { get; set; }
public double? PositionSalaryAmount { get; set; }
public Guid? OcId { get; set; }
public Guid? OrganizationShortNameId { get; set; }
public Guid? PositionId { get; set; }
public Guid? PosNoId { get; set; }
public Guid? PositionLineId { get; set; }
public Guid? PositionPathSideId { get; set; }
public Guid? PositionTypeId { get; set; }
public Guid? PositionLevelId { get; set; }
public Guid? PositionExecutiveId { get; set; }
public Guid? PositionExecutiveSideId { get; set; }
public string? SalaryClass { get; set; }
public string? SalaryRef { get; set; }
public virtual List<ProfileSalaryHistory> ProfileSalaryHistorys { get; set; } = new List<ProfileSalaryHistory>();
public virtual Profile? Profile { get; set; }
}
}