hrms-api-backend/BMA.EHR.Domain/Models/Organizations/Report2/Report2History.cs
Suphonchai Phoonsawat 68dab7a727 Add Profile Table
2023-06-26 15:18:39 +07:00

94 lines
4.4 KiB
C#

using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Domain.Models.Base;
namespace BMA.EHR.Domain.Models.Organizations.Report2
{
public class Report2History : EntityBase
{
[Comment("ชื่อ-สกุล")]
public string? FullName { get; set; }
[Comment("คุณวุฒิ")]
public string? Education { get; set; }
[Comment("เงินเดือน")]
public double? Salary { get; set; }
[Comment("เงินประจำตำแหน่ง")]
public double? SalaryPosition { get; set; }
[Comment("เงินตอบแทนรายเดือน")]
public double? SalaryMonth { get; set; }
[Comment("รหัสส่วนราชการ กำหนดเดิม")]
public string? OldOrganizationShortName { get; set; }
public string? OldGovernmentCode { get; set; }
[Comment("ชื่อหน่วยงาน กำหนดเดิม")]
public string? OldOrganizationOrganization { get; set; }
[Comment("ตำแหน่งเลขที่ กำหนดเดิม")]
public string? OldPositionNum { get; set; }
[Comment("ประเภทตำแหน่ง กำหนดเดิม")]
public string? OldPositionType { get; set; }
[Comment("ตำแหน่งทางการบริหาร กำหนดเดิม")]
public string? OldPositionExecutive { get; set; }
[Comment("ด้านทางบริหาร กำหนดเดิม")]
public string? OldPositionExecutiveSide { get; set; }
[Comment("ตำแหน่งในสายงาน กำหนดเดิม")]
public string? OldPositionPath { get; set; }
[Comment("ด้าน/สาขา กำหนดเดิม")]
public string? OldPositionPathSide { get; set; }
[Comment("ระดับตำแหน่ง กำหนดเดิม")]
public string? OldPositionLevel { get; set; }
[Comment("รหัสส่วนราชการ กำหนดใหม่")]
public Guid? NewOrganizationShortNameId { get; set; }
public string? NewOrganizationShortName { get; set; }
public string? NewGovernmentCode { get; set; }
[Comment("ชื่อหน่วยงาน กำหนดใหม่")]
public Guid? NewOrganizationOrganizationId { get; set; }
public string? NewOrganizationOrganization { get; set; }
[Comment("ตำแหน่งเลขที่ กำหนดใหม่")]
public Guid? NewPositionNumId { get; set; }
public string? NewPositionNum { get; set; }
[Comment("ประเภทตำแหน่ง กำหนดใหม่")]
public Guid? NewPositionTypeId { get; set; }
public string? NewPositionType { get; set; }
[Comment("ตำแหน่งทางการบริหาร กำหนดใหม่")]
public Guid? NewPositionExecutiveId { get; set; }
public string? NewPositionExecutive { get; set; }
[Comment("ด้านทางบริหาร กำหนดใหม่")]
public Guid? NewPositionExecutiveSideId { get; set; }
public string? NewPositionExecutiveSide { get; set; }
[Comment("ตำแหน่งในสายงาน กำหนดใหม่")]
public Guid? NewPositionPathId { get; set; }
public string? NewPositionPath { get; set; }
[Comment("ด้าน/สาขา กำหนดใหม่")]
public Guid? NewPositionPathSideId { get; set; }
public string? NewPositionPathSide { get; set; }
[Comment("ระดับตำแหน่ง กำหนดใหม่")]
public Guid? NewPositionLevelId { get; set; }
public string? NewPositionLevel { get; set; }
[Comment("สถานะการเปลี่ยนแปลง")]
public string? Status { get; set; }
[Comment("สังกัดที่ถือครอง")]
public Guid? ProfilePositionId { get; set; }
public Guid? OrganizationPositionId { get; set; }
public Report2DetailHistory? Report2DetailHistory { get; set; }
}
}