39 lines
725 B
Java
39 lines
725 B
Java
package com.ruoyi.cai.domain;
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableId;
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import lombok.Data;
|
||
|
||
import java.io.Serializable;
|
||
import java.time.LocalDateTime;
|
||
|
||
/**
|
||
* 高风险操作日志对象 cai_user_risk_log
|
||
*
|
||
* @author 77
|
||
* @date 2023-12-22
|
||
*/
|
||
@Data
|
||
@TableName("cai_user_risk_log")
|
||
public class CaiUserRiskLog implements Serializable {
|
||
|
||
private static final long serialVersionUID=1L;
|
||
|
||
/**
|
||
*
|
||
*/
|
||
@TableId(value = "id")
|
||
private Long id;
|
||
/**
|
||
* 违规用户的user_id
|
||
*/
|
||
private Long userId;
|
||
/**
|
||
* 违规类型:1=截图 2=录频
|
||
*/
|
||
private Integer type;
|
||
|
||
private LocalDateTime createTime;
|
||
|
||
}
|