Forráskód Böngészése

h5接口返回数据添加模板背景图片

limingming 1 éve
szülő
commit
c8e9e71e0b

+ 2 - 0
rouyi-api/src/main/java/com/info666/infraredRemote/controller/GetDeviceInfoController.java

@@ -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);
 

+ 7 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/GetDeviceInfoVo.java

@@ -28,4 +28,11 @@ public class GetDeviceInfoVo {
      */
     private String componentsString;
 
+    /**
+     * 背景图Url
+     */
+    private String backgroundPictureUrl;
+
+
+
 }