|
@@ -48,10 +48,12 @@ public class GetDeviceInfoController {
|
|
|
//获取基本数据
|
|
|
BasicLibrary basicLibrary = basicLibraryService.getOne(new LambdaQueryWrapper<BasicLibrary>().eq(BasicLibrary::getDelFlag, 0)
|
|
|
.eq(BasicLibrary::getId, templateLibrary.getBaseId()), false);
|
|
|
+
|
|
|
GetDeviceInfoVo deviceInfoVo = new GetDeviceInfoVo();
|
|
|
deviceInfoVo.setBandValue(basicLibrary.getBandValue());
|
|
|
deviceInfoVo.setComponentsString(templateLibrary.getComponents());
|
|
|
deviceInfoVo.setBasicLibrary(basicLibrary);
|
|
|
+ deviceInfoVo.setBackgroundPictureUrl(templateLibrary.getBackgroundPictureUrl());
|
|
|
// TODO: 2023/7/17 需要跟h5再对一下 之前是list 现在只返回一条,不需要list
|
|
|
list.add(deviceInfoVo);
|
|
|
|