|
|
@@ -23,7 +23,7 @@ public interface CensusControllerAPI {
|
|
|
@ApiOperation(value = "床位分配统计", notes = "床位分配统计", httpMethod = "GET")
|
|
|
CommonResult queryBedTotal(@RequestAttribute String userId, Integer collegeId, String sex, Integer yearId) throws ParseException;
|
|
|
|
|
|
- @GetMapping(value = "bedTotalExport")
|
|
|
+ @GetMapping(value = "/bedTotalExport")
|
|
|
@ApiOperation(value = "导出床位分配统计数据", notes = "导出床位分配统计数据", httpMethod = "GET")
|
|
|
void bedTotalExport(HttpServletResponse response, @RequestAttribute String userId, Integer collegeId, String sex, Integer yearId) throws ParseException;
|
|
|
|
|
|
@@ -31,7 +31,7 @@ public interface CensusControllerAPI {
|
|
|
@ApiOperation(value = "床位入住统计", notes = "床位入住统计", httpMethod = "GET")
|
|
|
CommonResult queryCheckTotal(@RequestAttribute String userId, Integer collegeId, String sex, Integer yearId) throws ParseException;
|
|
|
|
|
|
- @GetMapping(value = "checkTotalExport")
|
|
|
+ @GetMapping(value = "/checkTotalExport")
|
|
|
@ApiOperation(value = "导出床位入住统计数据", notes = "导出床位入住统计数据", httpMethod = "GET")
|
|
|
void checkTotalExport(HttpServletResponse response, @RequestAttribute String userId, Integer collegeId, String sex, Integer yearId) throws ParseException;
|
|
|
}
|