104 lines
4.2 KiB
C#
104 lines
4.2 KiB
C#
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
|
{
|
|
public class ProfileSalary : EntityBase
|
|
{
|
|
[Comment("วัน เดือน ปี รับตำแหน่ง")]
|
|
public DateTime? Date { get; set; }
|
|
[Comment("ลำดับ")]
|
|
public int? Order { get; set; }
|
|
[Comment("เงินเดือน")]
|
|
public double? Amount { get; set; }
|
|
[Comment("เงินประจำตำแหน่ง")]
|
|
public double? PositionSalaryAmount { get; set; }
|
|
[Comment("เงินค่าตอบแทนรายเดือน")]
|
|
public double? MouthSalaryAmount { get; set; }
|
|
[Comment("Id สังกัด")]
|
|
public Guid? OcId { get; set; }
|
|
[Comment("Id ชื่อย่อหน่วยงาน")]
|
|
public Guid? OrganizationShortNameId { get; set; }
|
|
[Comment("Id ตำแหน่ง")]
|
|
public Guid? PositionId { get; set; }
|
|
[Comment("Id เลขที่ตำแหน่ง")]
|
|
public Guid? PosNoId { get; set; }
|
|
[Comment("เลขที่ตำแหน่งลูกจ้าง")]
|
|
public string? PosNoEmployee { get; set; }
|
|
[Comment("Id สายงาน")]
|
|
public Guid? PositionLineId { get; set; }
|
|
[Comment("Id ด้าน/สาขา")]
|
|
public Guid? PositionPathSideId { get; set; }
|
|
[Comment("Id ประเภทตำแหน่ง")]
|
|
public Guid? PositionTypeId { get; set; }
|
|
[Comment("Id ระดับ")]
|
|
public PositionLevel? PositionLevel { get; set; }
|
|
[Comment("Id ตำแหน่งทางการบริหาร")]
|
|
public Guid? PositionExecutiveId { get; set; }
|
|
[Comment("Id ด้านทางการบริหาร")]
|
|
public Guid? PositionExecutiveSideId { get; set; }
|
|
[Comment("Id ตำแหน่ง")]
|
|
public Guid? PositionEmployeePositionId { get; set; }
|
|
[Comment("Id ด้านของตำแหน่ง")]
|
|
public Guid? PositionEmployeePositionSideId { get; set; }
|
|
[Comment(" Id ระดับชั้นงาน")]
|
|
public Guid? PositionEmployeeLevelId { get; set; }
|
|
[Comment("Id กลุ่มงาน")]
|
|
public Guid? PositionEmployeeGroupId { get; set; }
|
|
|
|
[Comment("ตำแหน่ง (รายละเอียด)")]
|
|
public string? SalaryClass { get; set; }
|
|
|
|
[Comment("เอกสารอ้างอิง")]
|
|
public string? SalaryRef { get; set; }
|
|
public virtual List<ProfileSalaryHistory> ProfileSalaryHistorys { get; set; } = new List<ProfileSalaryHistory>();
|
|
public virtual Profile? Profile { get; set; }
|
|
|
|
[Comment("เลขที่คำสั่ง")]
|
|
public string CommandNo { get; set; }
|
|
|
|
[Comment("ประเภทคำสั่ง")]
|
|
public string CommandTypeName { get; set; }
|
|
|
|
[Comment("ประเภทตำแหน่งกรณีพิเศษ")]
|
|
public string? SalaryStatus { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
[Comment("เอกสารอ้างอิง (เลขที่คำสั่ง)")]
|
|
public string? RefCommandNo { get; set; }
|
|
|
|
|
|
[Comment("OrgName")]
|
|
public string? OrgName { get; set; }
|
|
|
|
[Comment("AgencyName")]
|
|
public string? AgencyName { get; set; }
|
|
|
|
[Comment("PosNoName")]
|
|
public string? PosNoName { get; set; }
|
|
|
|
// Add For Entry
|
|
|
|
public string? PositionRef { get; set; }
|
|
|
|
public string? PositionTypeName { get; set; }
|
|
|
|
public string? PositionLevelName { get; set; }
|
|
|
|
|
|
[Comment("PositionName")]
|
|
public string? PositionName { get; set; }
|
|
|
|
[Comment("PositionLineName")]
|
|
public string? PositionLineName { get; set; }
|
|
|
|
[Comment("CLevel")]
|
|
public string? CLevel { get; set; }
|
|
|
|
[Comment("PositionPathSideName")]
|
|
public string? PositionPathSideName { get; set; }
|
|
|
|
[Comment("PositionExecutiveName")]
|
|
public string? PositionExecutiveName { get; set; }
|
|
}
|
|
}
|