|
|
@@ -10,8 +10,8 @@ import com.sundot.airport.common.core.page.TableDataInfo;
|
|
10
|
10
|
import com.sundot.airport.common.enums.BusinessType;
|
|
11
|
11
|
import com.sundot.airport.common.utils.poi.ExcelUtil;
|
|
12
|
12
|
import com.sundot.airport.ledger.domain.LedgerSecurityTest;
|
|
13
|
|
-import com.sundot.airport.ledger.domain.vo.LedgerSecurityTestQueryReqVO;
|
|
14
|
|
-import com.sundot.airport.ledger.domain.vo.LedgerSecurityTestResVO;
|
|
|
13
|
+import com.sundot.airport.common.dto.LedgerCommonQueryReqVO;
|
|
|
14
|
+import com.sundot.airport.common.dto.LedgerCommonResVO;
|
|
15
|
15
|
import com.sundot.airport.ledger.service.ILedgerSecurityTestService;
|
|
16
|
16
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
17
|
17
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
@@ -57,8 +57,8 @@ public class LedgerSecurityTestController extends BaseController {
|
|
57
|
57
|
* @return AjaxResult
|
|
58
|
58
|
*/
|
|
59
|
59
|
@PostMapping("/securityTestItemClassification")
|
|
60
|
|
- public AjaxResult securityTestItemClassification(@RequestBody LedgerSecurityTestQueryReqVO queryReq) {
|
|
61
|
|
- List<LedgerSecurityTestResVO> seizureQuantityList = service.securityTestItemClassification(queryReq);
|
|
|
60
|
+ public AjaxResult securityTestItemClassification(@RequestBody LedgerCommonQueryReqVO queryReq) {
|
|
|
61
|
+ List<LedgerCommonResVO> seizureQuantityList = service.securityTestItemClassification(queryReq);
|
|
62
|
62
|
return AjaxResult.success(seizureQuantityList);
|
|
63
|
63
|
}
|
|
64
|
64
|
|
|
|
@@ -69,8 +69,8 @@ public class LedgerSecurityTestController extends BaseController {
|
|
69
|
69
|
* @return AjaxResult
|
|
70
|
70
|
*/
|
|
71
|
71
|
@PostMapping("/securityTestPassingStatus")
|
|
72
|
|
- public AjaxResult securityTestPassingStatus(@RequestBody LedgerSecurityTestQueryReqVO queryReq) {
|
|
73
|
|
- List<LedgerSecurityTestResVO> seizureQuantityList = service.securityTestPassingStatus(queryReq);
|
|
|
72
|
+ public AjaxResult securityTestPassingStatus(@RequestBody LedgerCommonQueryReqVO queryReq) {
|
|
|
73
|
+ List<LedgerCommonResVO> seizureQuantityList = service.securityTestPassingStatus(queryReq);
|
|
74
|
74
|
return AjaxResult.success(seizureQuantityList);
|
|
75
|
75
|
}
|
|
76
|
76
|
|
|
|
@@ -81,8 +81,8 @@ public class LedgerSecurityTestController extends BaseController {
|
|
81
|
81
|
* @return AjaxResult
|
|
82
|
82
|
*/
|
|
83
|
83
|
@PostMapping("/securityTestRegion")
|
|
84
|
|
- public AjaxResult securityTestRegion(@RequestBody LedgerSecurityTestQueryReqVO queryReq) {
|
|
85
|
|
- List<LedgerSecurityTestResVO> seizureQuantityList = service.securityTestRegion(queryReq);
|
|
|
84
|
+ public AjaxResult securityTestRegion(@RequestBody LedgerCommonQueryReqVO queryReq) {
|
|
|
85
|
+ List<LedgerCommonResVO> seizureQuantityList = service.securityTestRegion(queryReq);
|
|
86
|
86
|
return AjaxResult.success(seizureQuantityList);
|
|
87
|
87
|
}
|
|
88
|
88
|
|