mirror of
https://gitee.com/anji-plus/report.git
synced 2026-02-02 09:27:47 +08:00
删除swagger相关注解
This commit is contained in:
@@ -12,7 +12,7 @@ import com.anjiplus.template.gaea.business.modules.reportexcel.dao.entity.Report
|
||||
import com.anjiplus.template.gaea.business.modules.reportexcel.service.ReportExcelService;
|
||||
import com.anjiplus.template.gaea.business.modules.reportshare.controller.dto.ReportShareDto;
|
||||
import com.anjiplus.template.gaea.business.modules.reportshare.service.ReportShareService;
|
||||
import io.swagger.annotations.Api;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
@@ -27,7 +27,7 @@ import java.io.IOException;
|
||||
* @date 2021/4/13 15:12
|
||||
*/
|
||||
@RestController
|
||||
@Api(tags = "报表表格管理")
|
||||
|
||||
@Permission(code = "excelManage", name = "报表管理")
|
||||
@RequestMapping("/reportExcel")
|
||||
public class ReportExcelController extends GaeaBaseController<ReportExcelParam, ReportExcel, ReportExcelDto> {
|
||||
|
||||
@@ -2,7 +2,6 @@ package com.anjiplus.template.gaea.business.modules.reportexcel.dao.entity;
|
||||
|
||||
import com.anji.plus.gaea.curd.entity.GaeaBaseEntity;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
@@ -13,21 +12,21 @@ import lombok.Data;
|
||||
@Data
|
||||
public class ReportExcel extends GaeaBaseEntity {
|
||||
|
||||
@ApiModelProperty(value = "报表编码")
|
||||
/** 报表编码 */
|
||||
private String reportCode;
|
||||
|
||||
@ApiModelProperty(value = "数据集编码,以|分割")
|
||||
/** 数据集编码,以|分割 */
|
||||
private String setCodes;
|
||||
|
||||
@ApiModelProperty(value = "数据集查询参数")
|
||||
/** 数据集查询参数 */
|
||||
private String setParam;
|
||||
|
||||
@ApiModelProperty(value = "报表json字符串")
|
||||
/** 报表json字符串 */
|
||||
private String jsonStr;
|
||||
|
||||
@ApiModelProperty(value = "0--已禁用 1--已启用 DIC_NAME=ENABLE_FLAG")
|
||||
/** 0--已禁用 1--已启用 DIC_NAME=ENABLE_FLAG */
|
||||
private Integer enableFlag;
|
||||
|
||||
@ApiModelProperty(value = "0--未删除 1--已删除 DIC_NAME=DELETE_FLAG")
|
||||
/** 0--未删除 1--已删除 DIC_NAME=DELETE_FLAG */
|
||||
private Integer deleteFlag;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user