|
@@ -35,7 +35,6 @@ public class GetDeviceInfoController {
|
|
|
@ApiOperation("获取遥控设备信息")
|
|
|
@PostMapping("/getDeviceInfo")
|
|
|
public R<List<GetDeviceInfoVo>> getDeviceInfo(@RequestBody BaseParam param) {
|
|
|
- // TODO: 2023/7/17 跟h5确定后进行变更
|
|
|
Long temId = null;
|
|
|
if (param.getId() == null) {
|
|
|
temId = 1L;
|
|
@@ -56,7 +55,6 @@ public class GetDeviceInfoController {
|
|
|
deviceInfoVo.setBackgroundPictureUrl(templateLibrary.getBackgroundPictureUrl());
|
|
|
// TODO: 2023/7/17 需要跟h5再对一下 之前是list 现在只返回一条,不需要list
|
|
|
list.add(deviceInfoVo);
|
|
|
-
|
|
|
return R.ok(list);
|
|
|
}
|
|
|
|