44 lines
No EOL
1.4 KiB
C#
44 lines
No EOL
1.4 KiB
C#
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; }
|
|
}
|
|
} |