|
@@ -1318,8 +1318,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer orderType,
|
|
|
String con,
|
|
|
String userId,
|
|
|
- String userIds){
|
|
|
- return tmsTruckFeign.getAllJiMaoResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con,userId,userIds);
|
|
|
+ String userIds,
|
|
|
+ String startTime,
|
|
|
+ String endTime){
|
|
|
+ return tmsTruckFeign.getAllJiMaoResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con,userId,userIds,startTime,endTime);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "查询计皮实绩")
|
|
@@ -1379,9 +1381,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer orderType,
|
|
|
String con,
|
|
|
String userId,
|
|
|
- String userIds
|
|
|
+ String userIds,
|
|
|
+ String startTime,
|
|
|
+ String endTime
|
|
|
){
|
|
|
- return tmsTruckFeign.getUnloadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con,userId,userIds);
|
|
|
+ return tmsTruckFeign.getUnloadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con,userId,userIds,startTime,endTime);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "添加卸货实绩")
|