自动化立体仓库 - WMS系统
zhang
2025-05-23 2e0d98030100f7c201c50a94073f33c22082f24c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@TableName("sys_http_request_log")
public class RequestLog implements Serializable {
    /* 日志操作内容 */
    private String name;
    /* 请求入参 */
    private String request;
    /* 返回内容 */
    private String response;
    /* 请求时间 */
    @TableField("create_time")
    private Date createTime;
}