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.
51 lines
1.1 KiB
51 lines
1.1 KiB
package com.wrj.driver.server.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.experimental.Accessors;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Accessors(chain = true)
|
|
@TableName("sys_user_log")
|
|
public class SysUserLog implements Serializable {
|
|
|
|
@TableId(value = "id")
|
|
private Long id;
|
|
|
|
@TableField("title")
|
|
private String title;
|
|
|
|
@TableField("business_type")
|
|
private Integer businessType;
|
|
|
|
@TableField("method")
|
|
private String method;
|
|
|
|
@TableField("device")
|
|
private String device;
|
|
|
|
@TableField("oper_type")
|
|
private Integer operType;
|
|
|
|
@TableField("user_id")
|
|
private Long userId;
|
|
|
|
@TableField("oper_pram")
|
|
private String operParam;
|
|
|
|
@TableField("json_result")
|
|
private String jsonResult;
|
|
|
|
@TableField("status")
|
|
private Integer status;
|
|
|
|
@TableField("oper_time")
|
|
private LocalDateTime operTime;
|
|
}
|
|
|