no message

This commit is contained in:
Kittapath 2024-07-18 19:20:15 +07:00
parent 8c4cbe43b0
commit 2ee9df8db1
2 changed files with 124 additions and 4 deletions

View file

@ -198,14 +198,14 @@ namespace BMA.EHR.Domain.Models.Placement
// [Comment("Id ด้าน/สาขา")]
// public PositionPathSide? PositionPathSide { get; set; }
// [Comment("Id ประเภทตำแหน่ง")]
// public PositionType? PositionType { get; set; }
[Comment("Id ประเภทตำแหน่ง")]
public Guid? PositionTypeId { get; set; }
// [Comment("Id สายงาน")]
// public PositionLine? PositionLine { get; set; }
// [Comment("Id ระดับ")]
// public PositionLevel? PositionLevel { get; set; }
[Comment("Id ระดับ")]
public Guid? PositionLevelId { get; set; }
[Comment("คะแนนเต็มภาค ก")]
@ -247,6 +247,66 @@ namespace BMA.EHR.Domain.Models.Placement
public string? RemarkHorizontal { get; set; }
[Comment("profileId")]
public string? profileId { get; set; }
[Comment("ข้อมูลเก่า")]
public bool? IsOld { get; set; }
[Comment("เงินเดือน")]
public double? AmountOld { get; set; }
[Comment("ระดับโครงสร้าง")]
public string? nodeOld { get; set; }
[Comment("id โครงสร้าง")]
public string? nodeIdOld { get; set; }
[Comment("id อัตรากำลัง")]
public string? posmasterIdOld { get; set; }
[Comment("ชื่อหน่วยงาน root")]
public string? rootOld { get; set; }
[Comment("id หน่วยงาน root")]
public string? rootIdOld { get; set; }
[Comment("ชื่อย่อหน่วยงาน root")]
public string? rootShortNameOld { get; set; }
[Comment("ชื่อหน่วยงาน child1")]
public string? child1Old { get; set; }
[Comment("id หน่วยงาน child1")]
public string? child1IdOld { get; set; }
[Comment("ชื่อย่อหน่วยงาน child1")]
public string? child1ShortNameOld { get; set; }
[Comment("ชื่อหน่วยงาน child2")]
public string? child2Old { get; set; }
[Comment("id หน่วยงาน child2")]
public string? child2IdOld { get; set; }
[Comment("ชื่อย่อหน่วยงาน child2")]
public string? child2ShortNameOld { get; set; }
[Comment("ชื่อหน่วยงาน child3")]
public string? child3Old { get; set; }
[Comment("id หน่วยงาน child3")]
public string? child3IdOld { get; set; }
[Comment("ชื่อย่อหน่วยงาน child3")]
public string? child3ShortNameOld { get; set; }
[Comment("ชื่อหน่วยงาน child4")]
public string? child4Old { get; set; }
[Comment("id หน่วยงาน child4")]
public string? child4IdOld { get; set; }
[Comment("ชื่อย่อหน่วยงาน child4")]
public string? child4ShortNameOld { get; set; }
[Comment("id revision")]
public string? orgRevisionIdOld { get; set; }
[Comment("id ตำแหน่ง")]
public string? positionIdOld { get; set; }
[Comment("เลขที่ตำแหน่ง")]
public int? posMasterNoOld { get; set; }
[Comment("ชื่อตำแหน่งในสายงาน")]
public string? positionNameOld { get; set; }
[Comment("สายงาน")]
public string? positionFieldOld { get; set; }
[Comment("id ประเภทตำแหน่ง")]
public string? posTypeIdOld { get; set; }
[Comment("ชื่อประเภทตำแหน่ง")]
public string? posTypeNameOld { get; set; }
[Comment("id ระดับตำแหน่ง")]
public string? posLevelIdOld { get; set; }
[Comment("ชื่อระดับตำแหน่ง")]
public string? posLevelNameOld { get; set; }
public virtual List<PlacementCertificate> PlacementCertificates { get; set; } = new List<PlacementCertificate>();
public virtual List<PlacementEducation> PlacementEducations { get; set; } = new List<PlacementEducation>();
}