|
@@ -434,6 +434,42 @@ public class AMScontroller{
|
|
|
return amsFeign.getAmsContractTransportPrice1(mapValue, pageNum, pageSize, apiId, con,deleted);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/deleteSalelPrice")
|
|
|
+ @ApiOperation(value = "删除单价")
|
|
|
+ public Map<String,Object> deleteSalelPrice(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
+ return amsFeign.deleteSalelPrice(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getCarrierListByPrice")
|
|
|
+ @ApiOperation(value = "获取所有承运商")
|
|
|
+ public Map<String,Object> getCarrierListByPrice(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
+ return amsFeign.getCarrierListByPrice(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/updatePriceValue")
|
|
|
+ @ApiOperation(value = "更新单价")
|
|
|
+ public Map<String,Object> updatePriceValue(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
+ return amsFeign.updatePriceValue(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/updateaddressDeliveryAddress")
|
|
|
+ @ApiOperation(value = "更新卸货地址")
|
|
|
+ public Map<String,Object> updateaddressDeliveryAddress(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
+ return amsFeign.updateaddressDeliveryAddress(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getCarrierListByAddress")
|
|
|
+ @ApiOperation(value = "获取数据")
|
|
|
+ public Map<String,Object> getCarrierListByAddress(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
+ return amsFeign.getCarrierListByAddress(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/updateCarrierName")
|
|
|
+ @ApiOperation(value = "批量更新或者新增承运商")
|
|
|
+ public Map<String,Object> updateCarrierName(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
+ return amsFeign.updateCarrierName(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/getAmsContractTransportPriceForDetail")
|
|
|
@ApiOperation(value = "查询汽运单价信息(计费详单专用)")
|
|
|
public Map<String, Object> getAmsContractTransportPriceForDetail(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
@@ -1718,6 +1754,16 @@ public class AMScontroller{
|
|
|
return amsFeign.updateNoticeStatus(map);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping(value = "/getNoticeAll", produces = "application/json;charset=UTF-8")
|
|
|
+ public Map<String, Object> getNoticeAll(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
+ return amsFeign.getNoticeAll(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping(value = "/readAll", produces = "application/json;charset=UTF-8")
|
|
|
+ public Map<String, Object> readAll(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
+ return amsFeign.readAll(map);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value="删除", notes="根据url的id来指定删除对象")
|
|
|
@ApiImplicitParam(paramType = "path", name = "id", value = "ID", required = true, dataType = "BigDecimal")
|
|
|
@PostMapping(value = "/deleteNotice/{id}")//BigDecimal
|