ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
44
Models/HR/ProfileAbility.cs
Normal file
44
Models/HR/ProfileAbility.cs
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
using BMA.EHR.Report.Service.Models;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models.HR
|
||||
{
|
||||
public class ProfileAbility : EntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// ด้าน (ใช้เฉพาะ ความสามารถพิเศษ)
|
||||
/// </summary>
|
||||
public string? Field { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// รายละเอียด
|
||||
/// </summary>
|
||||
public string? Detail { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// หมายเหตุ
|
||||
/// </summary>
|
||||
public string? Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// วันที่เริ่มต้น
|
||||
/// </summary>
|
||||
public DateTime? DateStart { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// วันที่สิ้นสุด
|
||||
/// </summary>
|
||||
public DateTime? DateEnd { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// เอกสารอ้างอิง
|
||||
/// </summary>
|
||||
public string? Reference { get; set; }
|
||||
// public string? Side { get; set; }
|
||||
// public string? Detail { get; set; }
|
||||
// public string? Note { get; set; }
|
||||
public virtual List<ProfileAbilityHistory> ProfileAbilityHistorys { get; set; } = new List<ProfileAbilityHistory>();
|
||||
public virtual Profile? Profile { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue