123
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Date;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 用户异常记录对象 cai_user_error_log
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-22
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_user_error_log")
|
||||
public class UserErrorLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Long id;
|
||||
/**
|
||||
* 类型 1-截屏 2-录屏
|
||||
*/
|
||||
private Integer type;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userId;
|
||||
/**
|
||||
* 异常行为发生的地方, video=直播,other=其他
|
||||
*/
|
||||
private String homeIndex;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
||||
@@ -16,6 +16,7 @@ import java.time.LocalDateTime;
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_user_risk_log")
|
||||
@Deprecated
|
||||
public class UserRiskLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
Reference in New Issue
Block a user