删除swagger相关注解

This commit is contained in:
Devli
2024-08-26 09:20:50 +08:00
parent 6d8b08b816
commit a3e6fae3fc
2 changed files with 9 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ import com.anjiplus.template.gaea.business.modules.datasource.controller.param.C
import com.anjiplus.template.gaea.business.modules.datasource.controller.param.DataSourceParam; import com.anjiplus.template.gaea.business.modules.datasource.controller.param.DataSourceParam;
import com.anjiplus.template.gaea.business.modules.datasource.dao.entity.DataSource; import com.anjiplus.template.gaea.business.modules.datasource.dao.entity.DataSource;
import com.anjiplus.template.gaea.business.modules.datasource.service.DataSourceService; import com.anjiplus.template.gaea.business.modules.datasource.service.DataSourceService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
@@ -22,7 +22,7 @@ import org.springframework.web.bind.annotation.*;
* @date 2021-03-18 12:09:57.728203200 * @date 2021-03-18 12:09:57.728203200
**/ **/
@RestController @RestController
@Api(tags = "数据源管理")
@Permission(code = "datasourceManage", name = "数据源管理") @Permission(code = "datasourceManage", name = "数据源管理")
@RequestMapping("/dataSource") @RequestMapping("/dataSource")
public class DataSourceController extends GaeaBaseController<DataSourceParam, DataSource, DataSourceDto> { public class DataSourceController extends GaeaBaseController<DataSourceParam, DataSource, DataSourceDto> {

View File

@@ -5,7 +5,6 @@ import com.anji.plus.gaea.annotation.Unique;
import com.anji.plus.gaea.curd.entity.GaeaBaseEntity; import com.anji.plus.gaea.curd.entity.GaeaBaseEntity;
import com.anjiplus.template.gaea.business.code.ResponseCode; import com.anjiplus.template.gaea.business.code.ResponseCode;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
/** /**
@@ -16,26 +15,26 @@ import lombok.Data;
@TableName(keepGlobalPrefix=true, value="gaea_report_data_source") @TableName(keepGlobalPrefix=true, value="gaea_report_data_source")
@Data @Data
public class DataSource extends GaeaBaseEntity { public class DataSource extends GaeaBaseEntity {
@ApiModelProperty(value = "数据源编码") /**数据源编码*/
@Unique(code = ResponseCode.SOURCE_CODE_ISEXIST) @Unique(code = ResponseCode.SOURCE_CODE_ISEXIST)
private String sourceCode; private String sourceCode;
@ApiModelProperty(value = "数据源名称") /**数据源名称*/
private String sourceName; private String sourceName;
@ApiModelProperty(value = "数据源描述") /**数据源描述*/
private String sourceDesc; private String sourceDesc;
@ApiModelProperty(value = "数据源类型 DIC_NAME=SOURCE_TYPE; mysqloracesqlserverelasticsearch接口javaBean数据源类型字典中item-extend动态生成表单") /**数据源类型 DIC_NAME=SOURCE_TYPE; mysqloracesqlserverelasticsearch接口javaBean数据源类型字典中item-extend动态生成表单*/
private String sourceType; private String sourceType;
@ApiModelProperty(value = "数据源连接配置json关系库{ jdbcUrl:'', username:'', password:'','driverName':''}ES-sql{ apiUrl:'http://127.0.0.1:9092/_xpack/sql?format=json','method':'POST','body':'{\"query\":\"select 1\"}' } 接口{ apiUrl:'http://ip:port/url', method:'' } javaBean{ beanNamw:'xxx' }") /**数据源连接配置json关系库{ jdbcUrl:'', username:'', password:'','driverName':''}ES-sql{ apiUrl:'http://127.0.0.1:9092/_xpack/sql?format=json','method':'POST','body':'{\"query\":\"select 1\"}' } 接口{ apiUrl:'http://ip:port/url', method:'' } javaBean{ beanNamw:'xxx' }*/
private String sourceConfig; private String sourceConfig;
@ApiModelProperty(value = "0--已禁用 1--已启用 DIC_NAME=ENABLE_FLAG") /**0--已禁用 1--已启用 DIC_NAME=ENABLE_FLAG*/
private Integer enableFlag; private Integer enableFlag;
@ApiModelProperty(value = "0--未删除 1--已删除 DIC_NAME=DELETE_FLAG") /**0--未删除 1--已删除 DIC_NAME=DELETE_FLAG*/
private Integer deleteFlag; private Integer deleteFlag;