|
@@ -84,6 +84,18 @@ public class TSyncDataStudent implements Serializable {
|
|
|
@ApiModelProperty(value = "是否已同步到考生表中")
|
|
|
private Boolean updateStatus;
|
|
|
|
|
|
+ @ApiModelProperty(value = "教学班ID")
|
|
|
+ private String jxbId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学年名")
|
|
|
+ private String xnm;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学期名")
|
|
|
+ private String xqm;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "教学班组成")
|
|
|
+ private String jxbzc;
|
|
|
+
|
|
|
@TableField(exist = false)
|
|
|
private String examDate;
|
|
|
@TableField(exist = false)
|
|
@@ -237,6 +249,38 @@ public class TSyncDataStudent implements Serializable {
|
|
|
this.updateStatus = updateStatus;
|
|
|
}
|
|
|
|
|
|
+ public String getJxbId() {
|
|
|
+ return jxbId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJxbId(String jxbId) {
|
|
|
+ this.jxbId = jxbId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getXnm() {
|
|
|
+ return xnm;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setXnm(String xnm) {
|
|
|
+ this.xnm = xnm;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getXqm() {
|
|
|
+ return xqm;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setXqm(String xqm) {
|
|
|
+ this.xqm = xqm;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getJxbzc() {
|
|
|
+ return jxbzc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJxbzc(String jxbzc) {
|
|
|
+ this.jxbzc = jxbzc;
|
|
|
+ }
|
|
|
+
|
|
|
public String getExamDate() {
|
|
|
return examDate;
|
|
|
}
|