ย้ายคนจากสรรหาไปบรรจุ
This commit is contained in:
parent
afd9994783
commit
9a53f34107
15 changed files with 846 additions and 260 deletions
15
Models/Placement/PlacementType.cs
Normal file
15
Models/Placement/PlacementType.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Recurit.Exam.Service.Models;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Placement
|
||||
{
|
||||
public class PlacementType : EntityBaseNoIsActive
|
||||
{
|
||||
[Required, Comment("ชื่อประเภทบรรจุ")]
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
[Comment("สถานะการใช้งาน")]
|
||||
public bool IsActive { get; set; } = true;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue