ย้ายมาออกรายงานผ่านระบบ

This commit is contained in:
Suphonchai Phoonsawat 2023-05-10 20:11:47 +07:00
parent 4987f7c5ad
commit b817b781d2
144 changed files with 5573 additions and 63 deletions

View file

@ -0,0 +1,37 @@
using System;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.Report.Service.Models;
namespace BMA.EHR.Profile.Service.Models.HR
{
public class ProfileGovernmentHistory : EntityBase
{
// public Guid? AffiliationId { get; set; }
// public Guid? PositionId { get; set; }
// public Guid? WorkId { get; set; }
// public Guid? TypeId { get; set; }
// public Guid? LevelId { get; set; }
// public Guid? NumberId { get; set; }
// public Guid? BusinessId { get; set; }
public string? ReasonSameDate { get; set; }
public Guid? OcId { get; set; }
public string? Oc { get; set; }
public Guid? PositionId { get; set; }
public string? Position { get; set; }
public Guid? PosNoId { get; set; }
public string? PosNo { get; set; }
public string? PositionLine { get; set; }
// public string? PositionPathSide { get; set; }
public string? PositionType { get; set; }
public string? PositionLevel { get; set; }
public string? PositionExecutive { get; set; }
// public string? PositionExecutiveSide { get; set; }
public DateTime? DateAppoint { get; set; }
public DateTime? DateStart { get; set; }
public string? RetireDate { get; set; }
public string? GovAge { get; set; }
public int? GovAgeAbsent { get; set; } = 0;
public int? GovAgePlus { get; set; } = 0;
public virtual Profile? Profile { get; set; }
}
}