Files
cai-server/ruoyi-cai/src/main/java/com/ruoyi/cai/domain/LowHeightRisk.java
dute7liang d89b912d64 init
2023-12-31 00:00:30 +08:00

47 lines
876 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}