ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
25
Models/HR/ProfileSalary.cs
Normal file
25
Models/HR/ProfileSalary.cs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue