|
@@ -129,9 +129,9 @@ public class ConsoleByDeptExportController {
|
|
|
@ApiOperation(value = "条目缺陷占比(内页)-科室[by:cy]",
|
|
|
notes = "type: 统计维度 1-本月,2-本年(必填)<br>" +
|
|
|
"isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
- @PostMapping("/entryGroupByEntryDeptPage")
|
|
|
- @SysLogger("entryGroupByEntryDeptPage")
|
|
|
- public void entryGroupByEntryDeptPage(HttpServletResponse response, @RequestBody @Valid FilterPageByDeptVO filterPageByDeptVO) {
|
|
|
+ @PostMapping("/entryGroupExportByDeptEntry")
|
|
|
+ @SysLogger("entryGroupExportByDeptEntry")
|
|
|
+ public void entryGroupExportByDeptEntry(HttpServletResponse response, @RequestBody @Valid FilterPageByDeptVO filterPageByDeptVO) {
|
|
|
consoleByDeptExportFacade.entryGroupByEntryDeptPage(response, filterPageByDeptVO);
|
|
|
}
|
|
|
|
|
@@ -156,9 +156,9 @@ public class ConsoleByDeptExportController {
|
|
|
"startDate: 起始时间 <br>" +
|
|
|
"endDate: 截止时间 <br>" +
|
|
|
"isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
- @PostMapping("/qcResultShortByDeptPageExport")
|
|
|
- @SysLogger("qcResultShortByDeptPageExport")
|
|
|
- public void qcResultShortByDeptPageExport(HttpServletResponse response, @RequestBody @Valid QcResultShortPageVO qcResultShortPageVO) {
|
|
|
+ @PostMapping("/qcResultShortExportByDeptPage")
|
|
|
+ @SysLogger("qcResultShortExportByDeptPage")
|
|
|
+ public void qcResultShortExportByDeptPage(HttpServletResponse response, @RequestBody @Valid QcResultShortPageVO qcResultShortPageVO) {
|
|
|
consoleByDeptExportFacade.qcResultShortByDeptPageExport(response, qcResultShortPageVO);
|
|
|
}
|
|
|
|
|
@@ -175,9 +175,9 @@ public class ConsoleByDeptExportController {
|
|
|
"asc: 排序(升序) <br>" +
|
|
|
"desc: 排序(降序) <br>" +
|
|
|
"isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
- @PostMapping("/levelByDeptExport")
|
|
|
- @SysLogger("levelByDeptExport")
|
|
|
- public void levelByDeptExport(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
|
+ @PostMapping("/levelExportByDept")
|
|
|
+ @SysLogger("levelExportByDept")
|
|
|
+ public void levelExportByDept(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
|
consoleByDeptExportFacade.levelByDeptExport(response, filterOrderVO);
|
|
|
}
|
|
|
|
|
@@ -195,9 +195,9 @@ public class ConsoleByDeptExportController {
|
|
|
"startDate: 起始时间 <br>" +
|
|
|
"endDate: 截止时间 <br>" +
|
|
|
"isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
- @PostMapping("/entryStatisticsByDeptExport")
|
|
|
- @SysLogger("entryStatisticsByDeptExport")
|
|
|
- public void entryStatisticsByDeptExport(HttpServletResponse response,@RequestBody @Valid EntryStatisticsVO entryStatisticsVO) {
|
|
|
+ @PostMapping("/entryStatisticsExportByDept")
|
|
|
+ @SysLogger("entryStatisticsExportByDept")
|
|
|
+ public void entryStatisticsExportByDept(HttpServletResponse response,@RequestBody @Valid EntryStatisticsVO entryStatisticsVO) {
|
|
|
consoleByDeptExportFacade.entryStatisticsByDeptExport(response,entryStatisticsVO);
|
|
|
}
|
|
|
|