TRX 1 年間 前
コミット
8ad8b02743

+ 2 - 0
FullCardServer/src/main/java/com/zhongshu/card/server/core/service/projectAbout/CardInfoServiceImpl.java

@@ -281,6 +281,8 @@ public class CardInfoServiceImpl extends SuperService implements CardInfoService
     @Transactional
     @Override
     public ResultContent bindByCode(String code) {
+        code = code.trim().toUpperCase();
+        log.info("code: {}", code);
         // 卡池数据
         CardInfoPool cardInfoPool = cardInfoPoolDao.findTopByCode(code);
         if (ObjectUtils.isEmpty(cardInfoPool)) {