修改错误日志权限

This commit is contained in:
wuchunlei
2024-09-14 16:14:48 +08:00
parent 717323019d
commit a895687731
16 changed files with 886 additions and 27 deletions

View File

@@ -14,9 +14,11 @@ public class ClassExamUser {
@TableId
private Integer id;
private Integer classId;
private String type;
private Integer userId;
private Integer relationId;//考试类型 1小班 2自考
private Integer userId;//班级id或课程id
private Integer score;//分数

View File

@@ -21,6 +21,10 @@ public class CourseEntity {
private String title;
private String etitle;
private String titleAbbr;
private Integer sort;
private String image;

View File

@@ -28,6 +28,10 @@ public class MyUserEntity implements Serializable {
* 姓名
*/
private String name;
/**
* 证件照
*/
private String photo;
/**
* 年龄
*/

View File

@@ -0,0 +1,38 @@
package com.peanut.modules.common.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@Data
@TableName("user_certificate")
public class UserCertificate {
@TableId
private Integer id;
private String title;
//证书类型A a证 B b证 ZK自考
private String type;
private String certificateNo;
private String certificateUrl;
private Integer userId;
//课程id
private Integer courseId;
//如果从小班拿的证有小班id
private Integer classId;
private Date createTime;
@TableLogic
private Integer delFlag;
}