潘志宝
2024-10-13 86145e48fa25a6ff050b8f6020a0dd75b9c0d3d0
提交 | 用户 | 时间
c7f709 1 package com.iailab.module.data.channel.http.entity;
a6de49 2
H 3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
6 import io.swagger.v3.oas.annotations.media.Schema;
7 import lombok.Data;
8
9 import java.io.Serializable;
10 import java.util.Date;
11
12 @Data
be2308 13 @TableName("t_http_api")
a6de49 14 public class HttpApiEntity implements Serializable {
H 15     private static final long serialVersionUID = 1L;
16
17     /**
18      * 主键
19      */
20     @Schema(description = "主键")
21     @TableId(value = "id", type = IdType.INPUT)
22     private String id;
7c3e09 23
24     /**
25      * 编码
26      */
a6de49 27     private String code;
7c3e09 28
29     /**
30      * 名称
31      */
32     private String name;
33
34     /**
35      * URL
36      */
a6de49 37     private String url;
7c3e09 38
39     /**
40      * 请求方法
41      */
a6de49 42     private String method;
7c3e09 43
44     /**
45      * 参数
46      */
a6de49 47     private String param;
7c3e09 48
49     /**
50      * 描述
51      */
a6de49 52     private String descp;
7c3e09 53
54     /**
be2308 55      * 是否认证
7c3e09 56      */
86145e 57     private Boolean isAuth;
be2308 58
59     /**
60      * 认证地址
61      */
62     private String authUrl;
7c3e09 63
64     /**
65      * 创建人
66      */
67     private String creator;
68
69     /**
70      * 创建时间
71      */
a6de49 72     private Date createTime;
7c3e09 73
74     /**
75      * 修改人
76      */
77     private String updater;
78
79     /**
80      * 修改时间
81      */
a6de49 82     private Date updateTime;
H 83 }