|
@@ -434,6 +434,19 @@ public class AMScontroller{
|
|
return amsFeign.getAmsContractTransportPrice1(mapValue, pageNum, pageSize, apiId, con,deleted);
|
|
return amsFeign.getAmsContractTransportPrice1(mapValue, pageNum, pageSize, apiId, con,deleted);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @PostMapping("/getAmsContractTransportPriceForDetail")
|
|
|
|
+ @ApiOperation(value = "查询汽运单价信息(计费详单专用)")
|
|
|
|
+ public Map<String, Object> getAmsContractTransportPriceForDetail(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize,
|
|
|
|
+ Integer apiId,
|
|
|
|
+ String con, String userId) {
|
|
|
|
+ if (mapValue == null) {
|
|
|
|
+ mapValue = new HashMap<>();
|
|
|
|
+ }
|
|
|
|
+ return amsFeign.getAmsContractTransportPriceForDetail(mapValue, pageNum, pageSize, apiId, con,userId);
|
|
|
|
+ }
|
|
|
|
+
|
|
@PostMapping("/getInwardContractPrice")
|
|
@PostMapping("/getInwardContractPrice")
|
|
@ApiOperation(value = "查询内转汽运单价信息")
|
|
@ApiOperation(value = "查询内转汽运单价信息")
|
|
public Map<String, Object> getInwardContractPrice(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
public Map<String, Object> getInwardContractPrice(@RequestBody(required = false) Map<String, Object> mapValue,
|