liyg 2 년 전
부모
커밋
e441e1be8e
2개의 변경된 파일11개의 추가작업 그리고 3개의 파일을 삭제
  1. 6 2
      src/main/java/com/steerinfo/dil/controller/BMSController.java
  2. 5 1
      src/main/java/com/steerinfo/dil/feign/BmstruckFeign.java

+ 6 - 2
src/main/java/com/steerinfo/dil/controller/BMSController.java

@@ -424,11 +424,15 @@ public class BMSController extends BaseRESTfulController {
     public RESTfulResult getTruckStatementList(@RequestBody(required = false) Map<String, Object> mapValue,
                                                Integer pageNum,
                                                Integer pageSize,
-                                               Integer apiId) {
+                                               Integer apiId,
+                                               String userId,
+                                               String startTime,
+                                               String endTime,
+                                               String con) {
         if (mapValue == null) {
             mapValue = new HashMap<>();
         }
-        return bmstruckFeign.getTruckStatementList(mapValue, pageNum, pageSize, apiId);
+        return bmstruckFeign.getTruckStatementList(mapValue, pageNum, pageSize, apiId,userId,startTime,endTime,con);
     }
 
     @PostMapping("getInvoiceList")

+ 5 - 1
src/main/java/com/steerinfo/dil/feign/BmstruckFeign.java

@@ -117,7 +117,11 @@ public interface BmstruckFeign {
     RESTfulResult getTruckStatementList(@RequestBody(required = false) Map<String, Object> mapValue,
                                         @RequestParam("pageNum") Integer pageNum,
                                         @RequestParam("pageSize") Integer pageSize,
-                                        @RequestParam("apiId") Integer apiId);
+                                        @RequestParam("apiId") Integer apiId,
+                                        @RequestParam("userId") String userId,
+                                        @RequestParam("startTime") String startTime,
+                                        @RequestParam("endTime") String endTime,
+                                        @RequestParam("con") String con);
 
     /**
      * 生成销售汽运计费账单