无关风月
2025-04-03 f4744cf0f465478f06a9ebbc2e4966bf096a06e2
惠民卡代码
4个文件已修改
13 ■■■■■ 已修改文件
cloud-server-other/src/main/java/com/dsh/other/controller/StoreConfigController.java 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
cloud-server-other/src/main/java/com/dsh/other/controller/StoreController.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
cloud-server-other/src/main/java/com/dsh/other/entity/TStoreOtherConfigTrue.java 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
cloud-server-other/src/main/java/com/dsh/other/controller/StoreConfigController.java
@@ -74,6 +74,7 @@
                vo.setIsTop(homeModule.getIsTop());
                vo.setSort(homeModule.getSort());
                vo.setBackgroundImage(homeModule.getBackgroundImage());
                vo.setDisplayType(homeModule.getDisplayType());
                listVo.add(vo);
            }
            for (StoreConfig storeConfig : list) {
@@ -130,6 +131,7 @@
                storeConfigVo.setBackgroundImage(ToolUtil.isNotEmpty(worldCupStore.getBackgroundImage()) ? worldCupStore.getBackgroundImage() : worldCup.getHomeBackdropImg());
                storeConfigVo.setType(9);
                storeConfigVo.setIsOpen(worldCupStore.getIsOpen());
                storeConfigVo.setDisplayType(worldCupStore.getDisplayType());
                storeConfigVo.setSort(worldCupStore.getSort());
                listVo.add(storeConfigVo);
            }
cloud-server-other/src/main/java/com/dsh/other/controller/StoreController.java
@@ -439,6 +439,7 @@
                        tStoreOtherConfigTrue.setSort(tStoreOther.getSort());
                    }
                }
                tStoreOtherConfigTrue.setDisplayType(2);
            }
            return ResultUtil.success(tStoreOtherConfigTrues);
        } catch (Exception e) {
cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java
@@ -85,4 +85,9 @@
     */
    @TableField("typeId")
    private Integer typeId;
    /**
     * 展示类型 1:横屏 2:竖屏
     */
    @TableField("displayType")
    private Integer displayType;
}
cloud-server-other/src/main/java/com/dsh/other/entity/TStoreOtherConfigTrue.java
@@ -75,6 +75,11 @@
    @TableField("typeId")
    private Integer typeId;
    /**
     * displayType展示类型 1:横屏 2:竖屏
     */
    @TableField(exist = false)
    private Integer displayType;
    @Override