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

This commit is contained in:
Kittapath 2023-07-26 18:43:10 +07:00
parent 9a53f34107
commit 7fbdf971fa
13 changed files with 530 additions and 312 deletions

12
Models/Gendor.cs Normal file
View file

@ -0,0 +1,12 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recurit.Exam.Service.Models
{
public class Gender : EntityBase
{
[Required, MaxLength(20), Column(Order = 1), Comment("เพศ")]
public string Name { get; set; } = string.Empty;
}
}