โอนคนสรรหาไปบรรจุ

This commit is contained in:
Kittapath 2023-07-26 18:42:42 +07:00
parent 49d6f1eb41
commit 1a832061a9
49 changed files with 1725 additions and 765 deletions

View 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;
}
}