/*
|
* 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;
|
}
|