|
@@ -1825,11 +1825,13 @@ public class AMScontroller{
|
|
|
@RequestParam Integer apiId,
|
|
|
@RequestParam Integer pageNum,
|
|
|
@RequestParam Integer pageSize,
|
|
|
- @RequestParam(required = false) String con) {
|
|
|
+ @RequestParam(required = false) String con,
|
|
|
+ @RequestParam(required = false) String startTime,
|
|
|
+ @RequestParam(required = false) String endTime ) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return amsFeign.getHaveCarTruckNoList(mapValue, apiId, pageNum, pageSize, con);
|
|
|
+ return amsFeign.getHaveCarTruckNoList(mapValue, apiId, pageNum, pageSize, con,startTime,endTime);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="获取零星订单的物资详情")
|