修改错误日志权限
This commit is contained in:
@@ -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;//分数
|
||||
|
||||
|
||||
@@ -21,6 +21,10 @@ public class CourseEntity {
|
||||
|
||||
private String title;
|
||||
|
||||
private String etitle;
|
||||
|
||||
private String titleAbbr;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String image;
|
||||
|
||||
@@ -28,6 +28,10 @@ public class MyUserEntity implements Serializable {
|
||||
* 姓名
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 证件照
|
||||
*/
|
||||
private String photo;
|
||||
/**
|
||||
* 年龄
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user