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

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,15 @@
using BMA.EHR.Recruit.Service.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Domain.Models.Placement
{
public class PlacementIsProperty : EntityBase
{
[Required, Comment("ชื่อคุณสมบัติ")]
public string Name { get; set; } = string.Empty;
[Comment("สถานะการใช้งาน")]
public bool IsActive { get; set; } = true;
}
}