112 lines
5.5 KiB
C#
112 lines
5.5 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
using BMA.EHR.Domain.Models.Organizations;
|
|
using BMA.EHR.Domain.Models.Documents;
|
|
using BMA.EHR.Domain.Models.HR;
|
|
|
|
namespace BMA.EHR.Domain.Models.Retirement
|
|
{
|
|
public class RetirementDeceased : EntityBase
|
|
{
|
|
[Comment("ใบมรณบัตร")]
|
|
public Document? Document { get; set; }
|
|
[Comment("หนังสือเวียน")]
|
|
public Document? DocumentForward { get; set; }
|
|
[Comment("เลขที่ใบมรณบัตร")]
|
|
public string? Number { get; set; } = string.Empty;
|
|
[Comment("วันที่เสียชีวิต")]
|
|
public DateTime? Date { get; set; }
|
|
[Comment("สถานที่ออกใบมรณบัตร")]
|
|
public string? Location { get; set; } = string.Empty;
|
|
[Comment("เหตุผลการเสียชีวิต")]
|
|
public string? Reason { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
[Comment("profile Id")]
|
|
public string? profileId { get; set; }
|
|
[Comment("คำนำหน้า")]
|
|
public string? prefix { get; set; }
|
|
[Comment("ชื่อ")]
|
|
public string? firstName { get; set; }
|
|
[Comment("นามสกุล")]
|
|
public string? lastName { get; set; }
|
|
[Comment("เลขบัตรประชาชน")]
|
|
public string? citizenId { get; set; }
|
|
[Comment("ชื่อหน่วยงาน root")]
|
|
public string? root { get; set; }
|
|
[Comment("id หน่วยงาน root")]
|
|
public string? rootId { get; set; }
|
|
[Comment("id หน่วยงาน root")]
|
|
public string? rootDnaId { get; set; }
|
|
[Comment("ชื่อย่อหน่วยงาน root")]
|
|
public string? rootShortName { get; set; }
|
|
[Comment("ชื่อหน่วยงาน child1")]
|
|
public string? child1 { get; set; }
|
|
[Comment("id หน่วยงาน child1")]
|
|
public string? child1Id { get; set; }
|
|
[Comment("id หน่วยงาน child1")]
|
|
public string? child1DnaId { get; set; }
|
|
[Comment("ชื่อย่อหน่วยงาน child1")]
|
|
public string? child1ShortName { get; set; }
|
|
[Comment("ชื่อหน่วยงาน child2")]
|
|
public string? child2 { get; set; }
|
|
[Comment("id หน่วยงาน child2")]
|
|
public string? child2Id { get; set; }
|
|
[Comment("id หน่วยงาน child2")]
|
|
public string? child2DnaId { get; set; }
|
|
[Comment("ชื่อย่อหน่วยงาน child2")]
|
|
public string? child2ShortName { get; set; }
|
|
[Comment("ชื่อหน่วยงาน child3")]
|
|
public string? child3 { get; set; }
|
|
[Comment("id หน่วยงาน child3")]
|
|
public string? child3Id { get; set; }
|
|
[Comment("id หน่วยงาน child3")]
|
|
public string? child3DnaId { get; set; }
|
|
[Comment("ชื่อย่อหน่วยงาน child3")]
|
|
public string? child3ShortName { get; set; }
|
|
[Comment("ชื่อหน่วยงาน child4")]
|
|
public string? child4 { get; set; }
|
|
[Comment("id หน่วยงาน child4")]
|
|
public string? child4Id { get; set; }
|
|
[Comment("id หน่วยงาน child4")]
|
|
public string? child4DnaId { get; set; }
|
|
[Comment("ชื่อย่อหน่วยงาน child4")]
|
|
public string? child4ShortName { get; set; }
|
|
// [Comment("id revision")]
|
|
// public string? orgRevisionId { get; set; }
|
|
[Comment("เลขที่ตำแหน่ง")]
|
|
public int? posMasterNo { get; set; }
|
|
[Comment("ชื่อตำแหน่งในสายงาน")]
|
|
public string? position { get; set; }
|
|
[Comment("ตำแหน่งทางการบริหารเดิม")]
|
|
public string? PositionExecutiveOld { get; set; }
|
|
[Comment("id ประเภทตำแหน่ง")]
|
|
public string? posTypeId { get; set; }
|
|
[Comment("ชื่อประเภทตำแหน่ง")]
|
|
public string? posTypeName { get; set; }
|
|
[Comment("id ระดับตำแหน่ง")]
|
|
public string? posLevelId { get; set; }
|
|
[Comment("ชื่อระดับตำแหน่ง")]
|
|
public string? posLevelName { get; set; }
|
|
|
|
[Comment("สถานะการใช้งาน")]
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
[Comment("สถานภาพ (OFFICER->ข้าราชการ EMPLOYEE->ลูกจ้างประจำ)")]
|
|
public string? profileType { get; set; }
|
|
|
|
[Comment("ด้านทางการบริหาร")]
|
|
public string? positionExecutiveField { get; set; }
|
|
[Comment("ด้าน/สาขา")]
|
|
public string? positionArea { get; set; }
|
|
[Comment("ด้านทางการบริหาร (เก่า)")]
|
|
public string? positionExecutiveFieldOld { get; set; }
|
|
[Comment("ด้าน/สาขา (เก่า)")]
|
|
public string? positionAreaOld { get; set; }
|
|
|
|
public virtual List<RetirementDeceasedNoti> RetirementDeceasedNotis { get; set; } = new List<RetirementDeceasedNoti>();
|
|
}
|
|
}
|