ny
2024-12-12 f78656b3aff688567b0e8ff2e83646014ec098eb
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
31
32
package com.itstyle.log.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 InterfaceLogEntity {
    String uuid;
    String interfaceName;
    String url;
    Date createTime;
    String prams;
    String result;
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    @Id
    public String getUuid() {
        return uuid;
    }
}