fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserVIPPreInfoServiceImpl.java
@@ -93,6 +93,10 @@ public void addUserVIPPreInfo(UserVIPPreInfo info) throws UserVIPPreInfoException { if (info == null || info.getUid() == null || info.getProcess() == null) throw new UserVIPPreInfoException(1, "信息不完整"); for (Long fuid : Constant.NO_UPGRADE_UIDS) {// 禁止不能升级的用户升级 if (info.getUid().longValue() == fuid) return; } UserVIPPreInfo oldInfo = userVIPPreInfoMapper.selectByUidAndProcess(info.getUid(), info.getProcess()); if (oldInfo != null)