feat: 新增太阳能控制下发指令功能。

This commit is contained in:
tianyongbao
2026-07-01 01:02:17 +08:00
parent 70bd17439b
commit c37d5ae5e3
4 changed files with 670 additions and 118 deletions

View File

@@ -80,6 +80,16 @@ public class DeviceController extends BaseController {
return deviceService.queryPageList(bo, pageQuery);
}
/**
* 查询太阳能网控设备列表
*/
@SaCheckPermission("fishery:solarControl:list")
@GetMapping("/solar/list")
public TableDataInfo<DeviceVo> solarList(DeviceBo bo, PageQuery pageQuery) {
bo.setDeviceType(3);
return deviceService.queryPageList(bo, pageQuery);
}
/**
* 导出设备管理列表
*/