|
@@ -1,5 +1,8 @@
|
|
|
package com.keao.edu.user.entity;
|
|
|
|
|
|
+import com.keao.edu.auth.api.entity.SysUser;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
/**
|
|
@@ -7,46 +10,48 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
*/
|
|
|
public class ExamRegistration {
|
|
|
|
|
|
- /** */
|
|
|
private Long id;
|
|
|
|
|
|
- /** 考试项目 */
|
|
|
+ @ApiModelProperty(value = "考级项目编号")
|
|
|
private Integer examinationBasicId;
|
|
|
|
|
|
- /** 学生 */
|
|
|
+ @ApiModelProperty(value = "学员编号")
|
|
|
private Integer studentId;
|
|
|
-
|
|
|
- /** 代理商 */
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学员基本信息")
|
|
|
+ private SysUser sysUser;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "代理商编号")
|
|
|
private Integer agencyId;
|
|
|
|
|
|
- /** 专业 */
|
|
|
+ @ApiModelProperty(value = "专业编号")
|
|
|
private Integer subjectId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "专业信息")
|
|
|
+ private Subject subject;
|
|
|
|
|
|
- /** 级别 */
|
|
|
+ @ApiModelProperty(value = "报考级别")
|
|
|
private Integer level;
|
|
|
|
|
|
- /** 考试内容(json格式) */
|
|
|
+ @ApiModelProperty(value = "考试内容")
|
|
|
private String songJson;
|
|
|
|
|
|
- /** 上次考试级别 */
|
|
|
+ @ApiModelProperty(value = "上次报考级别")
|
|
|
private Integer lastExamLevel;
|
|
|
|
|
|
- /** 上次考试证书 */
|
|
|
+ @ApiModelProperty(value = "上次报考证书")
|
|
|
private String lastExamCertificateUrl;
|
|
|
|
|
|
- /** 指导老师姓名 */
|
|
|
+ @ApiModelProperty(value = "指导老师姓名")
|
|
|
private String adviserName;
|
|
|
|
|
|
- /** 指导老师电话 */
|
|
|
+ @ApiModelProperty(value = "指导老师电话")
|
|
|
private String adviserPhone;
|
|
|
-
|
|
|
- /** */
|
|
|
+
|
|
|
private java.util.Date createTime;
|
|
|
-
|
|
|
- /** */
|
|
|
+
|
|
|
private java.util.Date updateTime;
|
|
|
-
|
|
|
- /** */
|
|
|
+
|
|
|
private String tenantId;
|
|
|
|
|
|
public void setId(Long id){
|
|
@@ -56,7 +61,23 @@ public class ExamRegistration {
|
|
|
public Long getId(){
|
|
|
return this.id;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ public SysUser getSysUser() {
|
|
|
+ return sysUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSysUser(SysUser sysUser) {
|
|
|
+ this.sysUser = sysUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Subject getSubject() {
|
|
|
+ return subject;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubject(Subject subject) {
|
|
|
+ this.subject = subject;
|
|
|
+ }
|
|
|
+
|
|
|
public void setExaminationBasicId(Integer examinationBasicId){
|
|
|
this.examinationBasicId = examinationBasicId;
|
|
|
}
|