【新增】PS考点设置后端

This commit is contained in:
YOHO\20373
2025-07-01 17:10:15 +08:00
parent 963451924d
commit 92011c7c12
18 changed files with 1367 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
package pc.exam.pp.module.exam.controller.admin.exception;
public class PsException extends RuntimeException {
public PsException(String message) {
super(message);
}
}

View File

@@ -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;
}