ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
17
Models/Exam/CMSGovernment.cs
Normal file
17
Models/Exam/CMSGovernment.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Models
|
||||
{
|
||||
public class CMSGovernment : EntityBase
|
||||
{
|
||||
[Required, Comment("Id CMS")]
|
||||
public virtual CMSCandidate? CMSCandidate { get; set; }
|
||||
|
||||
[Comment("ชื่อลิงค์")]
|
||||
public string? Name { get; set; }
|
||||
|
||||
[Comment("ลิงค์")]
|
||||
public string? Link { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue