feat(Property): 1

This commit is contained in:
2025-08-30 21:14:04 +08:00
parent 85a943a697
commit 28f44a1c5f

View File

@@ -121,8 +121,8 @@ public class TbMeterInfoController extends BaseController {
* 获取水/电/气表当前读数
*/
@GetMapping("/currentReading/{floorId}")
public R<Void> currentReading(@PathVariable("floorId") Long floorId) {
return R.ok();
public R<List<TbMeterInfoVo>> currentReading(@PathVariable("floorId") Long floorId) {
return R.ok(tbMeterInfoService.getMeterStatus(floorId));
}
}