管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-12 4d8dd71b7d13fa41132c46831090c6282af502cb
src/main/java/com/lf/server/controller/show/ExportController.java
@@ -7,7 +7,6 @@
import com.lf.server.entity.show.ExportEntity;
import com.lf.server.entity.sys.UserEntity;
import com.lf.server.helper.StringHelper;
import com.lf.server.service.data.DownloadService;
import com.lf.server.service.show.ExportService;
import com.lf.server.service.sys.TokenService;
import io.swagger.annotations.Api;
@@ -33,9 +32,6 @@
    @Autowired
    TokenService tokenService;
    @Autowired
    DownloadService downloadService;
    @SysLog()
    @ApiOperation(value = "分页查询")
@@ -81,14 +77,12 @@
                return fail("用户未登录");
            }
            String str = exportService.post(entity);
            String str = exportService.post(ue, entity);
            if (StringHelper.isNull(str)) {
                return fail("出图失败");
            }
            //
            return success(str);
            return success("出图成功", str);
        } catch (Exception ex) {
            return fail(ex.getMessage());
        }