【修改】ps考点出题完善
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
package pc.exam.pp.module.exam.dal.dataobject;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@TableName(value = "exam_ps_keyword", autoResultMap = true)
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@@ -27,11 +30,11 @@ public class ExamPsKeyword {
|
||||
/**
|
||||
* 键
|
||||
*/
|
||||
private String keyName;
|
||||
private String key;
|
||||
/**
|
||||
* 值
|
||||
*/
|
||||
private String keyValue;
|
||||
private String value;
|
||||
/**
|
||||
* 权值
|
||||
*/
|
||||
@@ -40,4 +43,9 @@ public class ExamPsKeyword {
|
||||
* 类型(学生考点:1,结果考点:2)
|
||||
*/
|
||||
private String type;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
@TableField(exist = false)
|
||||
private List<ExamPsKeyword> children;
|
||||
}
|
||||
|
Reference in New Issue
Block a user