|
@@ -1,20 +1,15 @@
|
|
|
package cn.com.qmth.examcloud.core.questions.dao.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
+import cn.com.qmth.examcloud.core.questions.base.question.enums.QuesStructType;
|
|
|
+import cn.com.qmth.examcloud.core.questions.dao.entity.base.IdBase;
|
|
|
import cn.com.qmth.examcloud.core.questions.dao.entity.dto.CoursePropertyNumberDto;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.core.questions.base.question.enums.QuesStructType;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* Created by songyue on 17/3/21.
|
|
|
*/
|
|
|
-public class PaperDetailUnitStruct implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = -3766822545462183904L;
|
|
|
-
|
|
|
- private String id;
|
|
|
+public class PaperDetailUnitStruct extends IdBase {
|
|
|
|
|
|
private Integer number;
|
|
|
|
|
@@ -32,10 +27,6 @@ public class PaperDetailUnitStruct implements Serializable {
|
|
|
|
|
|
private String propertyGroup; //单个属性组(用来筛选题目)
|
|
|
|
|
|
- public static long getSerialVersionUID() {
|
|
|
- return serialVersionUID;
|
|
|
- }
|
|
|
-
|
|
|
public PaperDetailUnitStruct() {
|
|
|
|
|
|
}
|
|
@@ -57,14 +48,6 @@ public class PaperDetailUnitStruct implements Serializable {
|
|
|
return String.valueOf(coursePropertyNumberDto.getPropertyId());
|
|
|
}
|
|
|
|
|
|
- public String getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(String id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getNumber() {
|
|
|
return number;
|
|
|
}
|
|
@@ -105,10 +88,6 @@ public class PaperDetailUnitStruct implements Serializable {
|
|
|
this.publicity = publicity;
|
|
|
}
|
|
|
|
|
|
- public static long getSerialversionuid() {
|
|
|
- return serialVersionUID;
|
|
|
- }
|
|
|
-
|
|
|
public String getDifficulty() {
|
|
|
return difficulty;
|
|
|
}
|