自动化立体仓库 - WCS系统
*
lsh
2025-04-24 388353ed9bad250663e8ad8129463d1ea80d46e6
src/main/java/com/zy/system/entity/OperateLog.java
@@ -12,7 +12,7 @@
import java.text.SimpleDateFormat;
import java.util.Date;
@TableName("sys_operate_log")
@TableName("\"SOURCE\".\"sys_operate_log\"")
public class OperateLog implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -20,39 +20,43 @@
    /**
     * 编号
     */
    @TableId(value = "id", type = IdType.AUTO)
    @TableId(value = "ID", type = IdType.AUTO)
    private Long id;
    /**
     * 访问地址
     */
    @TableField("ACTION")
    private String action;
    /**
     * 用户
     */
    @TableField("user_id")
    @TableField("USER_ID")
    private Long userId;
    /**
     * 客户端IP
     */
    @TableField("IP")
    private String ip;
    /**
     * 请求数据
     */
    @TableField("REQUEST")
    private String request;
    /**
     * 响应数据
     */
    @TableField("RESPONSE")
    private String response;
    /**
     * 添加时间
     */
    @TableField("create_time")
    @TableField("CREATE_TIME")
    private Date createTime;
    public Long getId() {