37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
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; }
|
|
}
|
|
}
|