ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package jnpf.base.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 数据接口
 */
@Data
@TableName("base_data_interface")
public class DataInterfaceEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
 
    /**
     * 分类
     */
    @TableField("f_category")
    private String category;
 
    /**
     * 接口名称
     */
    @TableField("f_full_name")
    private String fullName;
 
    /**
     * 接口编码
     */
    @TableField("f_en_code")
    private String enCode;
 
    /**
     * 类型(1-sql,2-静态数据,3-api)
     */
    @TableField("f_type")
    private Integer type;
 
    /**
     * 动作(3-查询)
     */
    @TableField("f_action")
    private Integer action;
 
    /**
     * 分页(0-禁用,1-启用)
     */
    @TableField("f_has_page")
    private Integer hasPage;
 
    /**
     * 后置接口(0-否 1-是)
     */
    @TableField("f_is_postposition")
    private Integer isPostPosition;
 
    /**
     * 数据配置json
     */
    @TableField("f_data_config_json")
    private String dataConfigJson;
 
    /**
     * 数据统计json
     */
    @TableField("f_data_count_json")
    private String dataCountJson;
 
    /**
     * 数据回显json
     */
    @TableField("f_data_echo_json")
    private String dataEchoJson;
 
    /**
     * 异常验证json
     */
    @TableField("f_data_exception_json")
    private String dataExceptionJson;
 
    /**
     * 数据处理json
     */
    @TableField("f_data_js_json")
    private String dataJsJson;
 
    /**
     * 参数json
     */
    @TableField("f_parameter_json")
    private String parameterJson;
 
    /**
     * 字段JSON
     */
    @TableField("f_field_json")
    private String fieldJson;
 
}