package com.steerinfo.dil.feign; import com.steerinfo.framework.controller.RESTfulResult; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import java.math.BigDecimal; import java.util.Map; @FeignClient(value = "DIL-RMS-API-DEV", url = "${openfeign.RmsFeign.url}") public interface RmsFeign { /** * @author huk * @return */ //新增作业环节 @ApiOperation(value="新增作业环节") @PostMapping("api/v1/rms/rmslinks/LinkInsertSelective") Map LinkInsertSelective(@RequestBody(required = false) Map mapValue); /** * @author huk * @return */ @PostMapping("/api/v1/rms/rmslinks/getLink") Map getlink(); /** * @author huk * @return */ //新增运输路线 @ApiOperation(value="新增运输路线") @ApiImplicitParams({ @ApiImplicitParam(name = "mapValue", value = "运输路线", required = false, dataType = "Map"), }) @PostMapping("/api/v1/rms/rmslines/insertSelective") Map insertSelective(@RequestBody(required = false) Map mapVal); @PostMapping(value = "/api/v1/rms/rmslines/getAllLineDesk") Map getAllLineDesk(@RequestBody(required = false) Map mapValue, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize")Integer pageSize, @RequestParam("apiId")Integer apiId, @RequestParam("lineType")Integer lineType, @RequestParam("con")String con); @ApiOperation(value="查询线路中的门岗汽车衡", notes="分页查询") @PostMapping("/api/v1/rms/rmslines/getGateCalculateMes") Map getGateCalculateMes(@RequestParam("lineId")Integer lineId); @ApiOperation(value = "根据主键查询出数据以供修改") @PostMapping("/api/v1/rms/rmslines/getLinkToUpdate") Map getLinkToUpdate(@RequestParam Integer lineId); @ApiOperation(value = "根据运输线路主表ID修改数据") @PostMapping("/api/v1/rms/rmslines/updateByPrimaryKeySelective") Map updateByPrimaryKeySelective(@RequestBody(required = false) Map mapVal); @ApiOperation(value = "根据运输线路主表ID修改数据,为逻辑删除") @PostMapping("/api/v1/rms/rmslines/updateRmsLine") Map updateRmsLine(@RequestBody(required = false) Map mapVal); @ApiOperation(value = "根据运输路线的主表id查询运输订单是否相关联") @PostMapping("/api/v1/rms/rmslines/getCountNumber") Map getCountNumber(@RequestParam Integer lineId); //******************************************************************************************************** //新增司机信息 @PostMapping(value = "api/v1/rms/rmscardriver/insertCarDriver") Map insertCarDriver(@RequestBody(required = false) Map map); //修改司机信息 @PostMapping(value = "api/v1/rms/rmscardriver/updateCarDriver") Map updateCarDriver(Map map); //通过id查询司机信息 @PostMapping(value = "api/v1/rms/rmscardriver/getCarDriverById/{id}") Map getCarDriverById(@PathVariable("id") BigDecimal id); //删除司机信息 @PostMapping(value = "api/v1/rms/rmscardriver/deleteCarDriver/{id}") Map deleteCarDriver(@PathVariable("id") BigDecimal id); //模糊查询司机 @PostMapping(value = "/api/v1/rms/rmscardriver/getCarDriverList") Map getCarDriverList(@RequestBody(required = false) Map mapValue, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam("apiId") Integer apiId, @RequestParam("con") String con); //获取承运商列表 @PostMapping(value = "api/v1/rms/rmscarrier/getCarrierList") Map getCarrierList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam String con); //新增承运商 @PostMapping(value = "api/v1/rms/rmscarrier/insertCarrier") Map insertCarrier(@RequestBody(required = false) Map map); //删除承运商 @PostMapping(value = "api/v1/rms/rmscarrier/deleteCarrier/{id}") Map deleteCarrier(@PathVariable("id") BigDecimal id); // 处理承运商照片 @PostMapping(value = "api/v1/rms/rmscarrier/uploadCarrier1" ,consumes = MediaType.MULTIPART_FORM_DATA_VALUE) String uploadCarrier1(@RequestPart("file") MultipartFile multipartFile); // 处理承运商照片 @PostMapping("api/v1/rms/rmscarrier/uploadCarrier2") int uploadCarrier2(@RequestParam("file")MultipartFile multipartFile); // 处理承运商照片 @PostMapping("api/v1/rms/rmscarrier/uploadCarrier3") int uploadCarrier3(@RequestPart("file") MultipartFile multipartFile); // 更新承运商信息 @PostMapping(value = "api/v1/rms/rmscarrier/updateCarrier") Map updateCarrier(@RequestBody(required = false) Map map); // 根据id获取承运商信息 @PostMapping(value = "api/v1/rms/rmscarrier/getCarrierById/{id}") Map getCarrierById(@PathVariable("id") BigDecimal id); // 展示中标区域 @PostMapping(value = "api/v1/rms/rmscarrier/getCarrierBidAreaList") Map getCarrierBidAreaList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam String con); //获取物资列表 @PostMapping(value = "api/v1/rms/rmsmaterial/getMaterialList") Map getMaterialList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam String con); //新增物资 @PostMapping(value = "api/v1/rms/rmsmaterial/insertMaterial") Map insertMaterial(@RequestBody(required = false) Map map); //删除物资 @PostMapping(value = "api/v1/rms/rmsmaterial/deleteMaterial/{id}") Map deleteMaterial(@PathVariable("id") BigDecimal id); // 更新物资信息 @PostMapping(value = "api/v1/rms/rmsmaterial/updateMaterial") Map updateMaterial(@RequestBody(required = false) Map map); // 根据id获取物资信息 @PostMapping(value = "api/v1/rms/rmsmaterial/getMaterialById/{id}") Map getMaterialById(@PathVariable("id") BigDecimal id); @PostMapping(value = "api/v1/rms/rmspersonnel/insertPersonnel") Map insertPersonnel(@RequestBody(required = false) Map map); //删除人员信息 @PostMapping(value = "api/v1/rms/rmspersonnel/deletePersonnel/{id}") Map deletePersonnel(@PathVariable("id") BigDecimal id); // 更新人员信息 @PostMapping(value = "api/v1/rms/rmspersonnel/updatePersonnel") Map updatePersonnel(@RequestBody(required = false) Map map); // 根据id获取人员信息 @PostMapping(value = "api/v1/rms/rmspersonnel/getPersonnelById/{personnelId}") Map getPersonnelById(@PathVariable("personnelId") BigDecimal personnelId); // 模糊查询人员信息 @PostMapping(value = "/api/v1/rms/rmspersonnel/getPersonnelList") Map getPersonnelList(@RequestBody(required = false) Map mapVal, @RequestParam("apiId")Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam("con") String con); //获得托运人列表 @PostMapping(value = "api/v1/rms/rmsshipper/getShipperList") Map getShipperList (@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam String con); //新增托运人信息 @PostMapping(value = "api/v1/rms/rmsshipper/insertShipper") Map insertShipper(@RequestBody(required = false) Map map); //删除托运人 @PostMapping(value = "api/v1/rms/rmsshipper/deleteShipper/{id}") Map deleteShipper(@PathVariable("id") BigDecimal id); //修改托运人信息 @PostMapping(value = "api/v1/rms/rmsshipper/updateShipper") Map updateShipper(@RequestBody(required = false) Map map); //根据id获取托运人信息 @PostMapping(value = "api/v1/rms/rmsshipper/getShipperById/{id}") Map getShipperById(@PathVariable("id") BigDecimal id); //展示供应商列表 @PostMapping(value = "api/v1/rms/rmssupplier/getSupplierList") Map getSupplierList (@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam("con") String con); //新增供应商信息 @PostMapping(value = "api/v1/rms/rmssupplier/insertSupplier") Map insertSupplier(@RequestBody(required = false) Map map); //删除供应商 @PostMapping(value = "api/v1/rms/rmssupplier/deleteSupplier/{id}") Map deleteSupplier(@PathVariable("id") BigDecimal id); // 更新供应商信息 @PostMapping(value = "api/v1/rms/rmssupplier/updateSupplier") Map updateSupplier(@RequestBody(required = false) Map map); // 根据id获取供应商信息 @PostMapping(value = "api/v1/rms/rmssupplier/getSupplierById/{id}") Map getSupplierById(@PathVariable("id") BigDecimal id); //新增运力 @PostMapping(value = "api/v1/rms/rmscapacity/insertCapacity") Map insertCapacity(@RequestBody(required = false) Map map); //删除运力 @PostMapping(value = "api/v1/rms/rmscapacity/deleteCapacity/{id}") Map deleteCapacity(@PathVariable("id") BigDecimal id); //修改运力 @PostMapping(value = "api/v1/rms/rmscapacity/updateCapacity") Map updateCapacity(Map map); //模糊查询运力 @PostMapping(value = "/api/v1/rms/rmscapacity/getCapacityList") Map getCapacityList(@RequestBody(required = false) Map mapValue, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam Integer apiId, @RequestParam String con, @RequestParam String carrierSSOId); //根据id获取运力详细信息 @PostMapping(value = "api/v1/rms/rmscapacity/getCapacityById/{id}") Map getCapacityById(@PathVariable("id") BigDecimal id); //新增汽车衡 @PostMapping(value = "api/v1/rms/rmstruckcalculate/insertTruckCalculate") Map insertTruckCalculate(@RequestBody(required = false) Map map); //新增汽车衡下的物资 @PostMapping(value = "api/v1/rms/rmstruckcalculate/insertTruckCalculateOfMaterial") Map insertTruckCalculateOfMaterial(@RequestBody(required = false) Map map); //更新汽车衡 @PostMapping(value = "api/v1/rms/rmstruckcalculate/updateTruckCalculate") Map updateTruckCalculate(@RequestBody Map map); //根据id查询汽车衡 @PostMapping(value = "api/v1/rms/rmstruckcalculate/getTruckCalculateById/{id}") Map getTruckCalculateById(@PathVariable("id") BigDecimal id); //根据id删除汽车衡 @PostMapping(value = "api/v1/rms/rmstruckcalculate/deleteTruckCalculate/{id}") Map deleteTruckCalculate(@PathVariable("id") BigDecimal id); //根据id删除汽车衡与物资中间表 @PostMapping(value = "api/v1/rms/rmstruckcalculate/deleteTruckCalculateMaterial/{id}") Map deleteTruckCalculateMaterial(@PathVariable("id") BigDecimal id); //模糊查询汽车衡 @PostMapping(value = "api/v1/rms/rmstruckcalculate/getTruckCalculateList") Map getTruckCalculateList(@RequestBody(required = false) Map mapValue, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam Integer apiId, @RequestParam String con); //汽车衡物资展示表 @PostMapping(value = "api/v1/rms/rmstruckcalculate/getCalculateOfMaterialList") Map getCalculateOfMaterialList(@RequestBody(required = false) Map mapValue, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam Integer apiId, @RequestParam BigDecimal truckCalculateId); //新增仓库 @PostMapping(value = "api/v1/rms/rmswarehouse/insertWarehouse") Map insertWarehouse(@RequestBody(required = false) Map map); //删除仓库 @PostMapping(value = "api/v1/rms/rmswarehouse/deleteWarehouse/{id}") Map deleteWarehouse(@PathVariable("id") BigDecimal id); //修改仓库 @PostMapping(value="api/v1/rms/rmswarehouse/updateWarehouse") Map updateWarehouse(Map map); //根据id获取原料仓库详细信息 @PostMapping(value = "api/v1/rms/rmswarehouse/getWarehouseById/{id}") Map getWarehouseById(@PathVariable("id") BigDecimal id); //模糊查询原料仓库 @PostMapping(value = "api/v1/rms/rmswarehouse/getWarehouseList") Map getWarehouseList(@RequestBody(required = false) Map mapValue, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam Integer apiId, @RequestParam String con); //获取司机排队信息 @PostMapping(value = "api/v1/rms/rmsdrivercapacity/getDriverCapacityList") Map getDriverCapacityList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize); //新增司机排队信息 @PostMapping(value = "api/v1/rms/rmsdrivercapacity/insertDriverCapacity") Map insertDriverCapacity(@RequestBody(required = false) Map map); //更新司机排队信息 @PostMapping(value = "api/v1/rms/rmsdrivercapacity/updateDriverCapacity") Map updateDriverCapacity(@RequestBody(required = false) Map map); //删除司机排队信息 @PostMapping(value = "api/v1/rms/rmsdrivercapacity/deleteDriverCapacity/{id}") Map deleteDriverCapacity(@PathVariable("id") BigDecimal id); //根据id获取司机排队信息 @PostMapping(value = "api/v1/rms/rmsdrivercapacity/getDriverCapacityById/{id}") Map getDriverCapacityById(@PathVariable("id") BigDecimal id); //获取门岗信息列表 @PostMapping(value = "api/v1/rms/rmsgatepost/getGatepostList") Map getGatepostList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam String con); //新增门岗 @PostMapping(value = "api/v1/rms/rmsgatepost/insertGatepost") Map insertGatepost(@RequestBody(required = false) Map map); //删除门岗 @PostMapping(value = "api/v1/rms/rmsgatepost/deleteGatepost/{id}") Map deleteGatepost(@PathVariable("id") BigDecimal id); // 更新门岗信息 @PostMapping(value = "api/v1/rms/rmsgatepost/updateGatepost") Map updateGatepost(@RequestBody(required = false) Map map); // 根据id获取门岗信息 @PostMapping(value = "api/v1/rms/rmsgatepost/getGatepostById/{id}") Map getGatepostById(@PathVariable("id") BigDecimal id); // 根据id获取门岗规则信息 @PostMapping(value = "api/v1/rms/rmsgatepost/getGatepostRulesById/{id}") Map getGatepostRulesById(@PathVariable("id") BigDecimal id,@RequestParam("apiId") Integer apiId); // 展示门岗规则信息 @PostMapping(value = "api/v1/rms/rmsgatepost/getGatepostRulesList") Map getGatepostRulesList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam String con); // 根据规则Id删除规则 @PostMapping(value ="api/v1/rms/rmsgatepost/deleteGatepostRules/{rulesId}") Map deleteGatepostRules(@RequestParam("rulesId") BigDecimal rulesId); // 新增门岗规则 @PostMapping(value ="api/v1/rms/rmsgatepost/insertGatepostRule") Map insertGatepostRule(@RequestBody(required = false) Map mapValue); // 根据门岗id获取门岗名 @PostMapping(value ="api/v1/rms/rmsgatepost/getGatepostName/{gatepostId}") Map getGatepostName(@PathVariable("gatepostId")BigDecimal gatepostId); //获取物资种类 @PostMapping(value = "api/v1/rms/rmsmaterialtype/getMaterialTypeList") Map getMaterialTypeList(@RequestBody(required = false) Map mapValue, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam Integer apiId, @RequestParam String con); //******************************************下拉框******************************* @GetMapping(value = "api/v1/rms/rmscapacity/getCapacityTypeId") Map getCapacityTypeId(); @GetMapping(value = "api/v1/rms/rmswarehouse/getWarehouseTypeId" ) Map getWarehouseTypeId(); @GetMapping(value= "api/v1/rms/rmswarehouse/getPortId") Map getPortId(); @GetMapping(value = "api/v1/rms/rmscapacity/getCarrierId") Map getCarrierId(); //******************************************下拉框******************************* // 根据id下拉获取运力列表 @GetMapping(value = "/api/v1/rms/rmscapacity/getCapacityId") Map getCapacityId(); // 根据id下拉框获取原料类型 @GetMapping(value = "api/v1/rms/rmsmaterial/getMaterialTypeId") Map getMaterialTypeId(); // 根据id下拉框获取计量类型 @GetMapping(value = "api/v1/rms/rmsmaterial/getUnitOfMeasureId") Map getUnitOfMeasureId(); // 根据id下拉框获取托运人 @GetMapping(value = "api/v1/rms/rmspersonnel/getShipperId") Map getShipperId(); //获取司机下拉框 @GetMapping(value = "api/v1/rms/rmsdrivercapacity/getDriverId") Map getDriverId(); // 根据id下拉框获取门岗规则 @GetMapping(value = "api/v1/rms/rmsgatepost/getShipperId") Map getGatepostRulesId(); //运输类型下拉框 @GetMapping(value = "api/v1/rms/rmscardriver/getTransportTypeId") Map getTransportTypeId(); // 根据id下拉框获取车辆类型 @GetMapping(value = "api/v1/rms/rmsgatepost/getVehicleTypeId") Map getVehicleTypeId(); @PostMapping(value = "/api/v1/rms/dilnotices/getNoticeList") Map getNoticeList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam("con") String con); //新增公告 @PostMapping(value = "api/v1/rms/dilnotices/insertNotice") Map insertNotice(@RequestBody(required = false) Map map); //删除公告 @PostMapping(value = "api/v1/rms/dilnotices/deleteNotice/{id}") Map deleteNotice(@PathVariable("id") BigDecimal id); //更新公告 @PostMapping(value = "api/v1/rms/dilnotices/updateNotice") Map updateNotice(@RequestBody(required = false) Map map); //根据id获取公告 @PostMapping(value = "api/v1/rms/dilnotices/getNoticeById/{id}") Map getNoticeById(@PathVariable("id") BigDecimal id); //油价 @PostMapping(value = "/api/v1/rms/rmsoilprice/getOilPriceResultList") Map getOilPriceResultList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam("con") String con); //新增油价 @PostMapping(value = "api/v1/rms/rmsoilprice/insertOilPrice") Map insertOilPrice(@RequestBody(required = false) Map map); //删除油价 @PostMapping(value = "api/v1/rms/rmsoilprice/deleteOilPrice/{id}") Map deleteOilPrice(@PathVariable("id") BigDecimal id); //更新油价 @PostMapping(value = "api/v1/rms/rmsoilprice/updateOilPrice/{id}") Map updateOilPrice(@PathVariable("id") Integer id); //根据id获取油价 @PostMapping(value = "api/v1/rms/rmsoilprice/getOilPriceById/{id}") Map getOilPriceById(@PathVariable("id") BigDecimal id); //******************************************下拉框******************************* //公告下拉框,须摸清实现原理 @GetMapping(value = "api/v1/rms/dilnotices/getNoticeTypeId") Map getNoticeTypeId(); //展示收货客户信息 @PostMapping(value = "/api/v1/rms/rmsconsignee/getConsigneeList") Map getConsigneeList(@RequestBody(required = false) Map mapValue, @RequestParam("apiId") Integer apiId, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize, @RequestParam("con") String con); //新增收货客户信息 @PostMapping(value = "/api/v1/rms/rmsconsignee/insertConsignee") Map insertConsignee(@RequestBody(required = false) Map map); //删除收货客户信息 @PostMapping(value = "/api/v1/rms/rmsconsignee/deleteConsignee/{id}") Map deleteConsignee(@PathVariable("id") BigDecimal id); //修改收货客户信息 @PostMapping(value = "/api/v1/rms/rmsconsignee/updateConsignee") Map updateConsignee(Map map); //根据id获取收货客户信息详细信息 @PostMapping(value = "/api/v1/rms/rmsconsignee/getConsigneeById/{id}") Map getConsigneeById(@PathVariable("id") BigDecimal id); //边输入边搜索承运商 @PostMapping(value = "/api/v1/rms/rmscardriver/getCarrierName") Map getCarrierName(@RequestParam(value = "state")String state); //港口 @PostMapping(value = "api/v1/rms/rmsPort/insertPort") Map insertPort(@RequestBody(required = false) Map map); //删除港口 @PostMapping(value = "api/v1/rms/rmsPort//deletePort/{portId}") Map deletePort(@PathVariable("portId") BigDecimal portId); //删除码头 @PostMapping(value = "api/v1/rms/rmsPier//deletePier/{pierId}") Map deletePier(@PathVariable("pierId") BigDecimal pierId); @PostMapping(value = "/api/v1/rms/rmsPort/getPort") Map getPortList(@RequestBody(required = false) Map mapVal, @RequestParam Integer apiId, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam String con); @PostMapping(value = "/api/v1/rms/rmsPier/getPier") Map getPierList(@RequestBody(required = false) Map mapVal, @RequestParam Integer apiId, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam String con); @PostMapping(value = "/api/v1/rms/rmsPortYard/getPortYard") Map getPortYardList(@RequestBody(required = false) Map mapVal, @RequestParam Integer apiId, @RequestParam Integer pageNum, @RequestParam Integer pageSize, @RequestParam String con); @GetMapping(value = "api/v1/rms/rmsPort/getPortType") Map getPortType(); @PostMapping(value = "api/v1/rms/rmsPier/insertPier") Map insertPier(@RequestBody(required = false) Map map); @PostMapping(value = "api/v1/rms/rmsPortYard/insertPortYard") Map insertPortYard(@RequestBody(required = false) Map map); //删除港存堆场 @PostMapping(value = "api/v1/rms/rmsPortYard/deletePortYard/{warehouseId}") Map deletePortYard(@PathVariable("warehouseId") BigDecimal warehouseId); // 得到二级部门的下拉 @GetMapping(value = "api/v1/rms/rmspersonnel/getSecondShipper") Map getSecondShipper(); // 得到三级部门的下拉 @GetMapping(value = "api/v1/rms/rmspersonnel/getThirdShipper") Map getThirdShipper(@RequestParam Integer shipperId); // 新增人员权限 @PostMapping(value = "api/v1/rms/rmspersonnel/addPersonnel") Map addPersonnel(@RequestBody Map map); // 查询SSO主键和机构编码 @PostMapping(value = "api/v1/rms/rmspersonnel/getShipperMap") Map getShipperMap(@RequestParam Integer shipperId); //根据运力id查询承运商名称 @PostMapping(value = "api/v1/rms/rmscarrier/getCarrierNameById/{id}") Map getCarrierNameById(@PathVariable("id") BigDecimal id); //根据司机id查询承运商名称 @PostMapping(value = "api/v1/rms/rmscardriver/getCarrierNameByDriverId/{id}") Map getCarrierNameByDriverId(@PathVariable("id") BigDecimal id); @ApiOperation(value="新增组织结构实绩") @PostMapping(value = "api/v1/rms/rmsshipper/addShipperResult") Map addShipperResult(@RequestBody(required = false) Map map); @ApiOperation(value="修改组织结构实绩") @PostMapping(value = "api/v1/rms/rmsshipper/updateShipperResult") Map updateShipperResult(@RequestBody(required = false) Map map); @ApiOperation(value="修改组织结构实绩") @PostMapping(value = "api/v1/rms/rmsshipper/deleteShipperResult") Map deleteShipperResult(@RequestBody(required = false) Map map); @ApiOperation(value = "根据carrierSSOId查询承运商") @PostMapping(value = "api/v1/rms/rmscapacity/getCarrierNameBySSOId") Map getCarrierNameBySSOId(@RequestParam("carrierSSOId") String carrierSSOId); @ApiOperation(value = "边输边查收货客户父节点") @PostMapping(value = "api/v1/rms/rmsconsignee/getConsigneeFarId") Map getConsigneeFarId(@RequestParam("state") String state); @ApiOperation(value = "边输边查收货客户父节点") @PostMapping(value = "api/v1/rms/rmspersonnel/isInHere") Integer isInHere(@RequestParam String personnelJobNumber); @ApiOperation(value="创建", notes="添加油品名称") @PostMapping(value = "api/v1/rms/rmsoilprice/addOilType") Map addOilType(@RequestParam String oilTypeName); @ApiOperation(value="创建", notes="查询油品名称") @PostMapping(value = "api/v1/rms/rmsoilprice/oilNameSelect") Map oilNameSelect(); @ApiOperation("解除承运商和车辆的绑定关系") @PostMapping("api/v1/rms/rmscapacity/deleteCapacityCarrier") public RESTfulResult deleteCapacityCarrier(@RequestBody(required = false) Map map); }