|
@@ -20,8 +20,6 @@ public class ReviewJob implements java.io.Serializable{
|
|
|
|
|
|
private String paper_id;
|
|
private String paper_id;
|
|
|
|
|
|
- private String type;
|
|
|
|
-
|
|
|
|
private String create_time;
|
|
private String create_time;
|
|
|
|
|
|
private String start_time;
|
|
private String start_time;
|
|
@@ -37,13 +35,12 @@ public class ReviewJob implements java.io.Serializable{
|
|
private int max_worker;
|
|
private int max_worker;
|
|
|
|
|
|
@PersistenceConstructor
|
|
@PersistenceConstructor
|
|
- public ReviewJob(String exam_id,String case_id, String name, String description, String create_time, String paper_id,String type, String start_time, String end_time, String group,Boolean isCrossValidation,Integer validationNum,Integer max_worker) {
|
|
|
|
|
|
+ public ReviewJob(String exam_id,String case_id, String name, String description, String create_time, String paper_id, String start_time, String end_time, String group,Boolean isCrossValidation,Integer validationNum,Integer max_worker) {
|
|
this.exam_id=exam_id;
|
|
this.exam_id=exam_id;
|
|
this.case_id=case_id;
|
|
this.case_id=case_id;
|
|
this.description = description;
|
|
this.description = description;
|
|
this.name = name;
|
|
this.name = name;
|
|
this.paper_id = paper_id;
|
|
this.paper_id = paper_id;
|
|
- this.type=type;
|
|
|
|
this.create_time = create_time;
|
|
this.create_time = create_time;
|
|
this.start_time = start_time;
|
|
this.start_time = start_time;
|
|
this.end_time = end_time;
|
|
this.end_time = end_time;
|
|
@@ -71,7 +68,6 @@ public class ReviewJob implements java.io.Serializable{
|
|
this.description = "";
|
|
this.description = "";
|
|
this.name = "";
|
|
this.name = "";
|
|
this.paper_id = paper_id;
|
|
this.paper_id = paper_id;
|
|
- this.type="";
|
|
|
|
this.create_time = create_time;
|
|
this.create_time = create_time;
|
|
this.start_time = "";
|
|
this.start_time = "";
|
|
this.end_time = "";
|
|
this.end_time = "";
|
|
@@ -175,14 +171,6 @@ public class ReviewJob implements java.io.Serializable{
|
|
this.case_id = case_id;
|
|
this.case_id = case_id;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getType() {
|
|
|
|
- return type;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setType(String type) {
|
|
|
|
- this.type = type;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public int getMax_worker() {
|
|
public int getMax_worker() {
|
|
return max_worker;
|
|
return max_worker;
|
|
}
|
|
}
|