Quellcode durchsuchen

优化查询条件

shiyj1101 vor 5 Jahren
Ursprung
Commit
7979c00c28

+ 4 - 0
service-acct/src/main/java/com/java110/acct/api/AccountBondObjDetailApi.java

@@ -103,6 +103,8 @@ public class AccountBondObjDetailApi {
     @RequestMapping(value = "/queryAccountBondObjDetail", method = RequestMethod.GET)
     public ResponseEntity<String> queryAccountBondObjDetail(@RequestParam(value = "detailId" , required = false) String detailId,
                                                             @RequestParam(value = "bobjId" , required = false) String bobjId,
+                                                            @RequestParam(value = "state" , required = false) String state,
+                                                            @RequestParam(value = "objId" , required = false) String objId,
                                                       @RequestParam(value = "page") int page,
                                                       @RequestParam(value = "row") int row) {
         AccountBondObjDetailDto accountBondObjDetailDto = new AccountBondObjDetailDto();
@@ -110,6 +112,8 @@ public class AccountBondObjDetailApi {
         accountBondObjDetailDto.setRow(row);
         accountBondObjDetailDto.setDetailId( detailId );
         accountBondObjDetailDto.setBobjId( bobjId );
+        accountBondObjDetailDto.setState( state );
+        accountBondObjDetailDto.setObjId( objId );
         return getAccountBondObjDetailBMOImpl.get(accountBondObjDetailDto);
     }
 }