Add MetaData Table From ExistData
Change to use MySQL
This commit is contained in:
parent
89de09d213
commit
a0b3b13074
136 changed files with 3438 additions and 1237 deletions
47
BMA.EHR.Domain/Models/HR/ProfileAbility.cs
Normal file
47
BMA.EHR.Domain/Models/HR/ProfileAbility.cs
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models.HR
|
||||
{
|
||||
public class ProfileAbility : EntityBase
|
||||
{
|
||||
[Comment("ด้าน")]
|
||||
/// <summary>
|
||||
/// ด้าน (ใช้เฉพาะ ความสามารถพิเศษ)
|
||||
/// </summary>
|
||||
public string? Field { get; set; }
|
||||
[Comment("รายละเอียด")]
|
||||
/// <summary>
|
||||
/// รายละเอียด
|
||||
/// </summary>
|
||||
public string? Detail { get; set; }
|
||||
[Comment("หมายเหตุ")]
|
||||
/// <summary>
|
||||
/// หมายเหตุ
|
||||
/// </summary>
|
||||
public string? Remark { get; set; }
|
||||
[Comment("วันที่เริ่มต้น")]
|
||||
|
||||
/// <summary>
|
||||
/// วันที่เริ่มต้น
|
||||
/// </summary>
|
||||
public DateTime? DateStart { get; set; }
|
||||
[Comment("วันที่สิ้นสุด")]
|
||||
/// <summary>
|
||||
/// วันที่สิ้นสุด
|
||||
/// </summary>
|
||||
public DateTime? DateEnd { get; set; }
|
||||
[Comment("เอกสารอ้างอิง")]
|
||||
/// <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