34 lines
1.4 KiB
C#
34 lines
1.4 KiB
C#
using BMA.EHR.MetaData.Service.Models;
|
|
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|
{
|
|
public class ProfileSalaryHistory : EntityBase
|
|
{
|
|
public DateTime? Date { get; set; }
|
|
public double? Amount { get; set; }
|
|
public double? PositionSalaryAmount { get; set; }
|
|
public Guid? OcId { get; set; }
|
|
public string? Oc { get; set; }
|
|
public Guid? OrganizationShortNameId { get; set; }
|
|
public string? OrganizationShortName { get; set; }
|
|
public Guid? PositionId { get; set; }
|
|
public string? Position { get; set; }
|
|
public Guid? PosNoId { get; set; }
|
|
public string? PosNo { get; set; }
|
|
public Guid? PositionLineId { get; set; }
|
|
public string? PositionLine { get; set; }
|
|
public Guid? PositionPathSideId { get; set; }
|
|
public string? PositionPathSide { get; set; }
|
|
public Guid? PositionTypeId { get; set; }
|
|
public string? PositionType { get; set; }
|
|
public Guid? PositionLevelId { get; set; }
|
|
public string? PositionLevel { get; set; }
|
|
public Guid? PositionExecutiveId { get; set; }
|
|
public string? PositionExecutive { get; set; }
|
|
public Guid? PositionExecutiveSideId { get; set; }
|
|
public string? PositionExecutiveSide { get; set; }
|
|
public string? SalaryClass { get; set; }
|
|
public string? SalaryRef { get; set; }
|
|
public virtual ProfileSalary? ProfileSalary { get; set; }
|
|
}
|
|
}
|