โอนคนสรรหาไปบรรจุ
This commit is contained in:
parent
49d6f1eb41
commit
1a832061a9
49 changed files with 1725 additions and 765 deletions
16
Models/MetaData/BloodGroup.cs
Normal file
16
Models/MetaData/BloodGroup.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using BMA.EHR.Recruit.Service.Models;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.MetaData.Service.Models
|
||||
{
|
||||
public class BloodGroup : EntityBase
|
||||
{
|
||||
[Required, MaxLength(2), Column(Order = 1), Comment("ชื่อหมู่โลหิต")]
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
[Column(Order = 2), Comment("สถานะการใช้งาน")]
|
||||
public bool IsActive { get; set; } = true;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue