|
@@ -88,7 +88,7 @@ public class SysParameterController {
|
|
|
@SneakyThrows
|
|
|
@GetMapping(value = "/sysParameter/{stationCode}/")
|
|
|
public ResponseVO getAll(@PathVariable("stationCode") String stationCode) {
|
|
|
- List<SysParameter> list = this.sysParameterService.getAll(stationCode);
|
|
|
+ List<SysParameter> list = this.sysParameterService.getAllByStationCode(stationCode);
|
|
|
return ResponseVO.success(list);
|
|
|
}
|
|
|
|