From 36dd9e313130c45d7ffb0b4035cdd087c52a2760 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 15 Mar 2023 11:39:02 +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