ลบรับโอน ขอโอน

This commit is contained in:
Kittapath 2023-08-05 17:53:07 +07:00
parent c56e3b06b9
commit 61ddd26c0e
11 changed files with 26700 additions and 175 deletions

View file

@ -34,8 +34,28 @@ namespace BMA.EHR.Domain.Models.Placement
public string? TelephoneNumber { get; set; }
[Comment("สถานะคำขอ")]
public string Status { get; set; } = "PENDING";
[Comment("Id เลขที่ตำแหน่ง")]
public OrganizationPositionEntity? OrganizationPosition { get; set; }
[Comment("วันที่บรรจุ")]
public DateTime? RecruitDate { get; set; }
[Comment("Id ตำแหน่งเลขที่")]
public PositionNumberEntity? PositionNumber { get; set; }
[Comment("Id ตำแหน่ง")]
public OrganizationEntity? Organization { get; set; }
public PositionPath? PositionPath { get; set; }
[Comment("Id ด้าน/สาขา")]
public PositionPathSide? PositionPathSide { get; set; }
[Comment("Id ประเภทตำแหน่ง")]
public PositionType? PositionType { get; set; }
[Comment("Id สายงาน")]
public PositionLine? PositionLine { get; set; }
[Comment("Id ระดับ")]
public PositionLevel? PositionLevel { get; set; }
[Comment("สถานะการใช้งาน")]
public bool IsActive { get; set; } = true;
public virtual List<PlacementReceiveDoc> PlacementReceiveDocs { get; set; } = new List<PlacementReceiveDoc>();

View file

@ -43,6 +43,7 @@
#endregion
#region " Organization "
public static readonly string OrganizationNotFound = "ไม่พบข้อมูลตำแหน่งในสังกัด";
public static readonly string PositionPosNoNotFound = "ไม่พบข้อมูลเลขที่ตำแหน่ง";
public static readonly string PositionPathNotFound = "ไม่พบข้อมูลตำแหน่ง";
public static readonly string PositionLineNotFound = "ไม่พบข้อมูลสายงาน";
@ -60,6 +61,8 @@
#region " Placement "
public static readonly string CertificateNotFound = "ไม่พบข้อมูลใบประกอบอาชีพ";
public static readonly string EducationNotFound = "ไม่พบข้อมูลประวัติการศึกษา";
public static readonly string PlacementTransferNotFound = "ไม่พบข้อมูลคำขอโอน";
public static readonly string PlacementReceiveNotFound = "ไม่พบข้อมูลรับโอน";
#endregion
#region " OrganizationEmployee "