【新增】PS考点设置后端
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package pc.exam.pp.module.exam.controller.admin.exception;
|
||||
|
||||
public class PsException extends RuntimeException {
|
||||
|
||||
public PsException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,43 @@
|
||||
package pc.exam.pp.module.exam.dal.dataobject;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
@TableName(value = "exam_ps_keyword", autoResultMap = true)
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class ExamPsKeyword {
|
||||
/**
|
||||
* 主键id
|
||||
*/
|
||||
private String id;
|
||||
/**
|
||||
* 试题id
|
||||
*/
|
||||
private String quId;
|
||||
/**
|
||||
* 父id
|
||||
*/
|
||||
private String parentId;
|
||||
/**
|
||||
* 键
|
||||
*/
|
||||
private String keyName;
|
||||
/**
|
||||
* 值
|
||||
*/
|
||||
private String keyValue;
|
||||
/**
|
||||
* 权值
|
||||
*/
|
||||
private String rate;
|
||||
/**
|
||||
* 类型(学生考点:1,结果考点:2)
|
||||
*/
|
||||
private String type;
|
||||
}
|
Reference in New Issue
Block a user