|
@@ -293,12 +293,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
return success(data);
|
|
|
}
|
|
|
|
|
|
- @ApiModelProperty(value = "模糊查询承运商")
|
|
|
- @ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "pageNum", value = "查询页数", required = false, dataType = "Integer"),
|
|
|
- @ApiImplicitParam(name = "pageSize", value = "每页记录数", required = false, dataType = "Integer"),
|
|
|
- @ApiImplicitParam(name = "apiId", value = "244", required = false, dataType = "BigDecimal")
|
|
|
- })
|
|
|
+ @ApiModelProperty(value = "边输边查承运商")
|
|
|
@PostMapping("/getCarrierMesByLike")
|
|
|
public RESTfulResult getCarrierMesByLike(@RequestParam("index") String index) {
|
|
|
if(index != null){
|
|
@@ -364,4 +359,18 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
return success(data);
|
|
|
}
|
|
|
|
|
|
+ @ApiModelProperty(value = "边输边查装货卸货点")
|
|
|
+ @PostMapping("/selectUnloadingPoint")
|
|
|
+ public RESTfulResult selectUnloadingPoint(@RequestParam("index") String index) {
|
|
|
+ if(index != null){
|
|
|
+ if(index.length() == 0){
|
|
|
+ index = null;
|
|
|
+ }else {
|
|
|
+ index += "%";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ List<Map<String, Object>> list = universalMapper.selectUnloadingPoint(index);
|
|
|
+ return success(list);
|
|
|
+ }
|
|
|
+
|
|
|
}
|