Change REport
This commit is contained in:
parent
55a83a43ec
commit
4987f7c5ad
9 changed files with 224 additions and 24 deletions
|
|
@ -76,5 +76,7 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|||
public DateTime ModifiedDate { get; set; }
|
||||
|
||||
public DateTime ApplyDate { get; set; }
|
||||
|
||||
public string? PositionName { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,39 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|||
[Required, Comment("ครั้งที่"), Column(Order = 3)]
|
||||
public int Order { get; set; } = 1;
|
||||
|
||||
public Document ImportFile { get; set; } = new Document();
|
||||
[Column(Order = 4, TypeName = "text"), Comment("รายละเอียด")]
|
||||
public string? Detail { get; set; }
|
||||
|
||||
[Column(Order = 5), Comment("ค่าธรรมเนียม")]
|
||||
public int Fee { get; set; } = 0;
|
||||
|
||||
[Column(Order = 6), Comment("วันเริ่มประกาศ")]
|
||||
public DateTime? AnnouncementStartDate { get; set; }
|
||||
|
||||
[Column(Order = 7), Comment("วันสิ้นสุดประกาศ")]
|
||||
public DateTime? AnnouncementEndDate { get; set; }
|
||||
|
||||
[Column(Order = 8), Comment("วันเริ่มชำระเงิน")]
|
||||
public DateTime? PaymentStartDate { get; set; }
|
||||
|
||||
[Column(Order = 9), Comment("วันสิ้นสุดชำระเงิน")]
|
||||
public DateTime? PaymentEndDate { get; set; }
|
||||
|
||||
[Column(Order = 10), Comment("วันเริ่มสมัครสอบ")]
|
||||
public DateTime? RegisterStartDate { get; set; }
|
||||
|
||||
[Column(Order = 11), Comment("วันสิ้นสุดสมัครสอบ")]
|
||||
public DateTime? RegisterEndDate { get; set; }
|
||||
|
||||
[Column(Order = 12), Comment("วันที่สอบ")]
|
||||
public DateTime? ExamDate { get; set; }
|
||||
|
||||
[Column(Order = 13, TypeName = "text"), Comment("หมายเหตุ")]
|
||||
public string? Note { get; set; }
|
||||
|
||||
public DateTime? AnnouncementDate { get; set; }
|
||||
|
||||
public Document ImportFile { get; set; } = new Document();
|
||||
|
||||
public List<Recruit> Recruits { get; set; } = new List<Recruit>();
|
||||
|
||||
|
|
|
|||
|
|
@ -37,6 +37,8 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|||
[MaxLength(200)]
|
||||
public string Major { get; set; }
|
||||
|
||||
public string? Number { get; set; } = string.Empty;
|
||||
|
||||
public ScoreImport ScoreImport { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue