43 lines
No EOL
1.3 KiB
C#
43 lines
No EOL
1.3 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Report.Service.Models;
|
|
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|
{
|
|
public class ProfileAbilityHistory : 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 ProfileAbility? ProfileAbility { get; set; }
|
|
}
|
|
} |