无人机小程序
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.

52 lines
1.1 KiB

package com.wrj.driver.server.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
1 day ago
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)
1 day ago
@TableName("sys_user_log")
public class SysUserLog implements Serializable {
@TableId(value = "id")
private Long id;
1 day ago
@TableField("title")
private String title;
1 day ago
@TableField("business_type")
private Integer businessType;
1 day ago
@TableField("method")
private String method;
@TableField("device")
private String device;
1 day ago
@TableField("oper_type")
private Integer operType;
1 day ago
@TableField("user_id")
private Long userId;
1 day ago
@TableField("oper_pram")
private String operParam;
1 day ago
@TableField("json_result")
private String jsonResult;
1 day ago
@TableField("status")
private Integer status;
1 day ago
@TableField("oper_time")
private LocalDateTime operTime;
}