|
@@ -58,8 +58,8 @@ public class KrBLineController {
|
|
@RequestMapping(value = "/findByKey", method = RequestMethod.GET)
|
|
@RequestMapping(value = "/findByKey", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ResponseBody
|
|
public CommonResult<List<KrBLine>> findByKey(@RequestParam @PathParam(value = "key") String key,
|
|
public CommonResult<List<KrBLine>> findByKey(@RequestParam @PathParam(value = "key") String key,
|
|
- @RequestParam @PathParam(value = "provinceId") String provinceId,
|
|
|
|
- @RequestParam @PathParam(value = "cityId") String cityId) {
|
|
|
|
|
|
+ @RequestParam(required = false) @PathParam(value = "provinceId") String provinceId,
|
|
|
|
+ @RequestParam(required = false) @PathParam(value = "cityId") String cityId) {
|
|
List<KrBLine> lineList = krBLineService.findByKey(key, provinceId, cityId);
|
|
List<KrBLine> lineList = krBLineService.findByKey(key, provinceId, cityId);
|
|
return CommonResult.success(lineList);
|
|
return CommonResult.success(lineList);
|
|
}
|
|
}
|
|
@@ -68,8 +68,8 @@ public class KrBLineController {
|
|
@RequestMapping(value = "/findByKeySimple", method = RequestMethod.GET)
|
|
@RequestMapping(value = "/findByKeySimple", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ResponseBody
|
|
public CommonResult<List<KrBLine>> findByKeySimple(@RequestParam @PathParam(value = "key") String key,
|
|
public CommonResult<List<KrBLine>> findByKeySimple(@RequestParam @PathParam(value = "key") String key,
|
|
- @RequestParam @PathParam(value = "provinceId") String provinceId,
|
|
|
|
- @RequestParam @PathParam(value = "cityId") String cityId) {
|
|
|
|
|
|
+ @RequestParam(required = false) @PathParam(value = "provinceId") String provinceId,
|
|
|
|
+ @RequestParam(required = false) @PathParam(value = "cityId") String cityId) {
|
|
List<KrBLine> lineList = krBLineService.findByKeySimple(key, provinceId, cityId);
|
|
List<KrBLine> lineList = krBLineService.findByKeySimple(key, provinceId, cityId);
|
|
return CommonResult.success(lineList);
|
|
return CommonResult.success(lineList);
|
|
}
|
|
}
|