linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.report.entity;
 
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 com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 积木报表表 实体类
 *
 * @author BladeX
 * @since 2024-06-26
 */
 
/**
 * 对象 jimu_report_db
 *
 * @author ${context.author}
 * @date 2024-06-26 14:26:27
 */
@ApiModel(value = "JimuReportDb对象", description = "")
@Data
@TableName("jimu_report_db")
public class ReportDbEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
 
    @ApiModelProperty(value = "主键ID", example = "")
    @TableId(value = "id", type = IdType.ASSIGN_UUID)
    private String id;
 
    @ApiModelProperty(value = "主键字段", example = "")
    @TableField("jimu_report_id")
    private String jimuReportId;
 
    @ApiModelProperty(value = "创建人登录名称", example = "")
    @TableField("create_by")
    private String createBy;
 
    @ApiModelProperty(value = "更新人登录名称", example = "")
    @TableField("update_by")
    private String updateBy;
 
    @ApiModelProperty(value = "创建日期", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("create_time")
    private Date createTime;
 
    @ApiModelProperty(value = "更新日期", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("update_time")
    private Date updateTime;
 
    @ApiModelProperty(value = "数据集编码", example = "")
    @TableField("db_code")
    private String dbCode;
 
    @ApiModelProperty(value = "数据集名字", example = "")
    @TableField("db_ch_name")
    private String dbChName;
 
    @ApiModelProperty(value = "数据源类型", example = "")
    @TableField("db_type")
    private String dbType;
 
    @ApiModelProperty(value = "数据库表名", example = "")
    @TableField("db_table_name")
    private String dbTableName;
 
    @ApiModelProperty(value = "动态查询SQL", example = "")
    @TableField("db_dyn_sql")
    private String dbDynSql;
 
    @ApiModelProperty(value = "数据源KEY", example = "")
    @TableField("db_key")
    private String dbKey;
 
    @ApiModelProperty(value = "填报数据源", example = "")
    @TableField("tb_db_key")
    private String tbDbKey;
 
    @ApiModelProperty(value = "填报数据表", example = "")
    @TableField("tb_db_table_name")
    private String tbDbTableName;
 
    @ApiModelProperty(value = "java类数据集  类型(spring:springkey,class:java类名)", example = "")
    @TableField("java_type")
    private String javaType;
 
    @ApiModelProperty(value = "java类数据源  数值(bean key/java类名)", example = "")
    @TableField("java_value")
    private String javaValue;
 
    @ApiModelProperty(value = "请求地址", example = "")
    @TableField("api_url")
    private String apiUrl;
 
    @ApiModelProperty(value = "请求方法0-get,1-post", example = "")
    @TableField("api_method")
    private String apiMethod;
 
    @ApiModelProperty(value = "是否是列表0否1是 默认0", example = "")
    @TableField("is_list")
    private String isList;
 
    @ApiModelProperty(value = "是否作为分页,0:不分页,1:分页", example = "")
    @TableField("is_page")
    private String isPage;
 
    @ApiModelProperty(value = "数据源", example = "")
    @TableField("db_source")
    private String dbSource;
 
    @ApiModelProperty(value = "数据库类型 MYSQL ORACLE SQLSERVER", example = "")
    @TableField("db_source_type")
    private String dbSourceType;
 
    @ApiModelProperty(value = "json数据,直接解析json内容", example = "")
    @TableField("json_data")
    private String jsonData;
 
    @ApiModelProperty(value = "api转换器", example = "")
    @TableField("api_convert")
    private String apiConvert;
}