|
|
@@ -58,8 +58,8 @@ public class LedgerSecurityTestController extends BaseController {
|
|
58
|
58
|
*/
|
|
59
|
59
|
@PostMapping("/securityTestItemClassification")
|
|
60
|
60
|
public AjaxResult securityTestItemClassification(@RequestBody LedgerCommonQueryReqVO queryReq) {
|
|
61
|
|
- List<LedgerCommonResVO> seizureQuantityList = service.securityTestItemClassification(queryReq);
|
|
62
|
|
- return AjaxResult.success(seizureQuantityList);
|
|
|
61
|
+ List<LedgerCommonResVO> result = service.securityTestItemClassification(queryReq);
|
|
|
62
|
+ return AjaxResult.success(result);
|
|
63
|
63
|
}
|
|
64
|
64
|
|
|
65
|
65
|
/**
|
|
|
@@ -70,8 +70,8 @@ public class LedgerSecurityTestController extends BaseController {
|
|
70
|
70
|
*/
|
|
71
|
71
|
@PostMapping("/securityTestPassingStatus")
|
|
72
|
72
|
public AjaxResult securityTestPassingStatus(@RequestBody LedgerCommonQueryReqVO queryReq) {
|
|
73
|
|
- List<LedgerCommonResVO> seizureQuantityList = service.securityTestPassingStatus(queryReq);
|
|
74
|
|
- return AjaxResult.success(seizureQuantityList);
|
|
|
73
|
+ List<LedgerCommonResVO> result = service.securityTestPassingStatus(queryReq);
|
|
|
74
|
+ return AjaxResult.success(result);
|
|
75
|
75
|
}
|
|
76
|
76
|
|
|
77
|
77
|
/**
|
|
|
@@ -82,8 +82,8 @@ public class LedgerSecurityTestController extends BaseController {
|
|
82
|
82
|
*/
|
|
83
|
83
|
@PostMapping("/securityTestRegion")
|
|
84
|
84
|
public AjaxResult securityTestRegion(@RequestBody LedgerCommonQueryReqVO queryReq) {
|
|
85
|
|
- List<LedgerCommonResVO> seizureQuantityList = service.securityTestRegion(queryReq);
|
|
86
|
|
- return AjaxResult.success(seizureQuantityList);
|
|
|
85
|
+ List<LedgerCommonResVO> result = service.securityTestRegion(queryReq);
|
|
|
86
|
+ return AjaxResult.success(result);
|
|
87
|
87
|
}
|
|
88
|
88
|
|
|
89
|
89
|
}
|