From 64e9417514a7fac1d6ec7c1e88c3fd8e524e954c Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 15 Mar 2023 14:37:18 +0800
Subject: [PATCH] 短信验证码

---
 src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
index 35ad3da..30abf20 100644
--- a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
+++ b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
@@ -90,6 +90,13 @@
             String scoreChange = ObjectUtil.isEmpty(scoreChangeDic.getValue()) ? "0" : scoreChangeDic.getValue();
             hlmScoreSetDto.setScoreChange(scoreChange);
         }
+        DataDictionaryCustom starGetDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(
+                DataDictionaryEnum.STAR_GET.getType(),
+                DataDictionaryEnum.STAR_GET.getCode());
+        if (starGetDic != null) {
+            String starGet = ObjectUtil.isEmpty(starGetDic.getValue()) ? "0" : starGetDic.getValue();
+            hlmScoreSetDto.setStarGet(starGet);
+        }
         model.addAttribute("hlmScoreSet", hlmScoreSetDto);
         return FebsUtil.view("modules/system/hlmScoreSet");
     }

--
Gitblit v1.9.1