|
@@ -117,4 +117,11 @@ public class DropDownController extends BaseRESTfulController {
|
|
|
List<Map<String, Object>> foreignName = dropDownService.getForeignName();
|
|
|
return success(foreignName);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value="查询卸货点")
|
|
|
+ @GetMapping("/getUnloadPoint/{type}")
|
|
|
+ public RESTfulResult getUnloadPoint(@PathVariable("type") Integer type){
|
|
|
+ List<Map<String, Object>> mes = dropDownService.getUnloadPoint(type);
|
|
|
+ return success(mes);
|
|
|
+ }
|
|
|
}
|