管道基础大数据平台系统开发-【后端】-Server
13693261870
2024-03-15 f6e52bce9475f2602e963b6d24c1732aaaef9783
src/main/java/com/lf/server/controller/sys/ReportController.java
@@ -12,11 +12,12 @@
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
@@ -27,13 +28,13 @@
@RestController
@RequestMapping("/report")
public class ReportController extends BaseController {
    @Autowired
    @Resource
    ReportService reportService;
    @Autowired
    @Resource
    TokenService tokenService;
    @Autowired
    @Resource
    UploadAttachService uploadAttachService;
    private final static String TAB_NAME = "lf.sys_report";
@@ -52,16 +53,16 @@
                return fail("每页页数或分页数小于1", null);
            }
            int count = reportService.selectCount(name);
            int count = reportService.selectCount(name, null);
            if (count == 0) {
                return success(0, null);
            }
            List<ReportEntity> rs = reportService.selectByPage(name, pageSize, pageSize * (pageIndex - 1));
            List<ReportEntity> rs = reportService.selectByPage(name, null, pageSize, pageSize * (pageIndex - 1));
            return success(count, rs);
        } catch (Exception ex) {
            return fail(ex.getMessage(), null);
            return fail(ex, null);
        }
    }
@@ -77,7 +78,7 @@
            return success(entity);
        } catch (Exception ex) {
            return fail(ex.getMessage(), null);
            return fail(ex, null);
        }
    }
@@ -98,7 +99,7 @@
            return success(count);
        } catch (Exception ex) {
            return fail(ex.getMessage(), -1);
            return fail(ex, -1);
        }
    }
@@ -114,7 +115,7 @@
            return success(count);
        } catch (Exception ex) {
            return fail(ex.getMessage(), -1);
            return fail(ex, -1);
        }
    }
@@ -134,7 +135,7 @@
            return success(count);
        } catch (Exception ex) {
            return fail(ex.getMessage(), -1);
            return fail(ex, -1);
        }
    }
@@ -156,7 +157,7 @@
            return success(count);
        } catch (Exception ex) {
            return fail(ex.getMessage(), -1);
            return fail(ex, -1);
        }
    }
@@ -169,4 +170,14 @@
        return uploadAttachService.upload(ue, TAB_NAME, file, this);
    }
    @SysLog()
    @ApiOperation(value = "下载文件")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "guid", value = "附件Guid", dataType = "String", paramType = "body")
    })
    @GetMapping(value = "/download")
    public void download(String guid, HttpServletResponse res) {
        uploadAttachService.download(guid, res);
    }
}