You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
643 B

package com.gk.study.entity;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
@TableName("b_op_log")
public class OpLog implements Serializable {
@TableId(value = "id",type = IdType.AUTO)
public Long id;
@TableField
public String reIp;
@TableField
public String reTime;
@TableField
public String reUa;
@TableField
public String reUrl;
@TableField
public String reMethod;
@TableField
public String reContent;
@TableField
public String accessTime;
}