修改错误日志权限
This commit is contained in:
@@ -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