Add MetaData Table From ExistData
Change to use MySQL
This commit is contained in:
parent
89de09d213
commit
a0b3b13074
136 changed files with 3438 additions and 1237 deletions
94
BMA.EHR.Domain/Models/Report2/Report2History.cs
Normal file
94
BMA.EHR.Domain/Models/Report2/Report2History.cs
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
|
||||
namespace BMA.EHR.Organization.Service.Models.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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue