Commit 8f27df25 by 高晓磊

场站管理根据id查询message错误

parent dd24da8b
...@@ -123,7 +123,7 @@ public class StationController { ...@@ -123,7 +123,7 @@ public class StationController {
return ResponseObj.error(400,"'id' must be not null!"); return ResponseObj.error(400,"'id' must be not null!");
} }
KObject station = stationService.getById(id); KObject station = stationService.getById(id);
return ResponseObj.success("修改成功",station); return ResponseObj.success("获取成功",station);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment