niying
2024-01-25 ccc63cdefe54bd500c509c4dc4436ce8830467a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.itstyle.mdm.entity;
 
 
import lombok.Data;
 
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
 
@Data
@Entity
@Table(name = "interface_log")
public class InterfaceLogData {
    private String uuid;//日志唯一识别码
    private String interfaceName;//接口名称
    private String url;//接口地址
    private Date createTime;//调用时间
    private String prams;//请求参数信息
    private String result;//响应结果
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    @Id
    public String getUuid() {
        return uuid;
    }
}