เพิ่มฟอร์มชำระเงิน
This commit is contained in:
parent
47d0f72f30
commit
1cfa4336fd
11 changed files with 3906 additions and 107 deletions
|
|
@ -89,6 +89,21 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
|
|||
[Comment("สำนัก")]
|
||||
public string? Category { get; set; }
|
||||
|
||||
[Comment("remark"), Column(TypeName = "text")]
|
||||
public string? Remark { get; set; }
|
||||
|
||||
[Comment("Company code")]
|
||||
public string? CompanyCode { get; set; }
|
||||
|
||||
[Comment("Customer name")]
|
||||
public string? CustomerName { get; set; }
|
||||
|
||||
[Comment("หมายเหตุ"), Column(TypeName = "text")]
|
||||
public string? Reason { get; set; }
|
||||
|
||||
[Comment("Ref No1")]
|
||||
public string? RefNo1 { get; set; }
|
||||
|
||||
[Comment("รายชื่อคนสม้ครในรอบ")]
|
||||
public List<Candidate> Candidate { get; set; } = new List<Candidate>();
|
||||
|
||||
|
|
@ -103,6 +118,12 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
|
|||
|
||||
[Comment("รูป")]
|
||||
public virtual List<PeriodExamImage> PeriodExamImages { get; set; } = new();
|
||||
|
||||
[Comment("qr code")]
|
||||
public virtual List<PeriodExamQrCode> PeriodExamQrCodes { get; set; } = new();
|
||||
|
||||
[Comment("bar code")]
|
||||
public virtual List<PeriodExamBarCode> PeriodExamBarCodes { get; set; } = new();
|
||||
public Document? ImportFile { get; set; } = new Document();
|
||||
public List<Disable> Disables { get; set; } = new List<Disable>();
|
||||
public ScoreImport? ScoreImport { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue