2022-07-01 13:49:44 +08:00

100 lines
1.6 KiB
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.blueland.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.io.Serializable;
import java.util.Date;
/**
* PV日志对象 t_pf_sys_pvlog
*
* @author ruoyi
* @date 2022-05-10
*/
@Data
@NoArgsConstructor
@Accessors(chain = true)
@TableName("t_pf_sys_pvlog")
public class TPfSysPvlog implements Serializable {
private static final long serialVersionUID=1L;
/**
* 唯一ID
*/
@TableId(value = "id", type = IdType.ASSIGN_ID)
private String id;
/**
* 用户ID
*/
private String userId;
/**
* 用户姓名
*/
private String userName;
/**
* 业务主键
*/
private String bizId;
/**
* 业务类型TASK任务
*/
private String bizType;
/**
* 访问页面标题
*/
private String aceessTitle;
/**
* IP地址
*/
private String aceessIp;
/**
* 访问页面标题
*/
private String aceessUrl;
/**
* 访问时间
*/
private Date aceessTime;
/**
* 访问来源手机端APP、网页端PC
*/
private String aceessSource;
/**
* 访问设备仅针对手机端如ios
*/
private String aceessDevice;
/**
* 访问浏览器
*/
private String aceessBrowse;
/**
* 所属系统
*/
private String appId;
/**
* 备注
*/
private String remark;
}