| | |
| | | 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; |
| | |
| | | |
| | | @Autowired |
| | | TokenService tokenService; |
| | | |
| | | @Autowired |
| | | DownloadService downloadService; |
| | | |
| | | @SysLog() |
| | | @ApiOperation(value = "分页查询") |
| | |
| | | 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()); |
| | | } |