test บรรจุ พิการ
This commit is contained in:
parent
80d678a582
commit
b296304697
6 changed files with 309 additions and 203 deletions
|
|
@ -6,8 +6,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
|
|||
{
|
||||
public class EducationLevel : EntityBase
|
||||
{
|
||||
[Required, MaxLength(100), Column(Order = 1), Comment("ระดับการศึกษา")]
|
||||
public string name { get; set; } = string.Empty;
|
||||
[MaxLength(255), Column(Order = 1), Comment("ระดับการศึกษา")]
|
||||
public string? name { get; set; } = null;
|
||||
|
||||
// [Column(Order = 2), Comment("สถานะการใช้งาน")]
|
||||
// public bool IsActive { get; set; } = true;
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
|
|||
{
|
||||
public class SubDistrict : EntityBase
|
||||
{
|
||||
[Required, MaxLength(150), Column(Order = 1), Comment("เขต/อำเภอ")]
|
||||
public string name { get; set; } = string.Empty;
|
||||
[MaxLength(255), Column(Order = 1), Comment("แขวง")]
|
||||
public string? name { get; set; } = null;
|
||||
|
||||
[Required, MaxLength(10), Column(Order = 2), Comment("รหัสไปรษณีย์")]
|
||||
public string zipCode { get; set; } = string.Empty;
|
||||
[MaxLength(10), Column(Order = 2), Comment("รหัสไปรษณีย์")]
|
||||
public string? zipCode { get; set; } = null;
|
||||
|
||||
// [Column(Order = 3), Comment("สถานะการใช้งาน")]
|
||||
// public bool IsActive { get; set; } = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue