zjh
2025-04-15 3acbfbf90dbaa7f87aa2d37405700a9abc08073a
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.ltkj.hosp.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.Data;
 
/**
 * his请求API管理表
 * @TableName his_api_config
 */
@TableName(value ="his_api_config")
@Data
public class HisApiConfig implements Serializable {
    /**
     * 
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * API请求路径 例如:/api/his/xxxx
     */
    private String apiUrl;
 
    /**
     * API请求代码 例如:Getlabgermrepinfo
     */
    private String apiMethod;
 
    /**
     * 数据库表名 值为ltkj_请求代码
     */
    private String tabName;
 
    /**
     * 是否包含在response内 0否 1是
     */
    private Integer isResponse;
 
    /**
     * 返回数据中的主键字段 英文逗号分隔
     */
    private String primaryKeys;
 
    /**
     * 接口说明
     */
    private String remark;
 
    /**
     * 返回状态键
     */
    private String resultCodeKey;
 
    /**
     * 返回数据键
     */
    private String resultDataKey;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}