migrate (add table PlacementAppointmentEmployee)
This commit is contained in:
parent
a4447b9014
commit
74281c697c
6 changed files with 19786 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Placement
|
||||
{
|
||||
public class PlacementAppointmentEmployee : EntityBase
|
||||
{
|
||||
[Comment("profile Id")]
|
||||
public string? profileId { get; set; }
|
||||
[Comment("คำนำหน้า")]
|
||||
public string? prefix { get; set; }
|
||||
[Comment("ชื่อ")]
|
||||
public string? firstName { get; set; }
|
||||
[Comment("นามสกุล")]
|
||||
public string? lastName { get; set; }
|
||||
[Comment("เลขบัตรประชาชน")]
|
||||
public string? citizenId { get; set; }
|
||||
|
||||
[Comment("ชื่อหน่วยงาน root")]
|
||||
public string? root { get; set; }
|
||||
|
||||
[Comment("id หน่วยงาน root")]
|
||||
public string? rootId { get; set; }
|
||||
|
||||
[Comment("ชื่อย่อหน่วยงาน root")]
|
||||
public string? rootShortName { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue