|
@@ -316,9 +316,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getUnLoadShipList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId) {
|
|
|
+ Integer apiId,
|
|
|
+ String con) {
|
|
|
|
|
|
- return tmsshipFeign.getUnLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
+ return tmsshipFeign.getUnLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getUnloadShip/{resultId}")
|