init
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
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_low_height_risk
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-22
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_low_height_risk")
|
||||
public class LowHeightRisk implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
* 违规用户的user_id
|
||||
*/
|
||||
private Long userId;
|
||||
/**
|
||||
* 截图次数
|
||||
*/
|
||||
private Long screenshotNum;
|
||||
/**
|
||||
* 录屏次数
|
||||
*/
|
||||
private Long screenRecordingNum;
|
||||
/**
|
||||
* 违规权重:1=低风险 2=高风险
|
||||
*/
|
||||
private Integer state;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user