【修改】ps考点出题完善

This commit is contained in:
huababa1
2025-07-04 18:47:34 +08:00
parent f4c9c1c9e7
commit a3be5c26a1
10 changed files with 225 additions and 31 deletions

View File

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