Memory_LG 1 週間 前
コミット
336ae8d6ab

+ 3 - 0
qmjszx-business/src/main/java/beilv/vipCardLog/service/impl/VipCardLogServiceImpl.java

@@ -466,6 +466,8 @@ public class VipCardLogServiceImpl implements IVipCardLogService {
         Map<String, String> paymentType = DictUtils.getDictCacheToMap("payment_type");
         Map<String, String> competitionState = DictUtils.getDictCacheToMap("competition_state");
         Map<String, String> paymentStatus = DictUtils.getDictCacheToMap("payment_status");
+        Map<String, String> competitionType = DictUtils.getDictCacheToMap("competition_type");
+
 
         maps.forEach(map -> {
             map.put("orderTypeLabel", MapUtils.getString(orderType, MapUtils.getString(map, "orderType")));
@@ -477,6 +479,7 @@ public class VipCardLogServiceImpl implements IVipCardLogService {
             map.put("applyStartTime", MapUtils.getString(map, "applyStartTime").replace("T", " "));
             map.put("createTime", MapUtils.getString(map, "createTime").replace("T", " "));
             map.put("paymentTime", MapUtils.getString(map, "paymentTime").replace("T", " "));
+            map.put("competitionTypeLabel", MapUtils.getString(competitionType, MapUtils.getString(map, "competitionType")));
         });
         return maps;
     }