2
zyy
2025-11-14 6e85d12eab8accba3dd6731d9273388bd7f8d68c
trading-order-admin/src/main/java/com/yami/trading/admin/controller/c2c/C2cPaymentMethodController.java
@@ -139,7 +139,7 @@
        if (!StringUtils.isNullOrEmpty(error)) {
            throw new YamiShopBindException(error);
        }
        sysUserService.checkSafeWord(model.getLoginSafeword());
        //sysUserService.checkSafeWord(model.getLoginSafeword());
        User party = userService.findUserByUserCode(model.getUserCode());
        if (null == party) {
            throw new YamiShopBindException("用户不存在");
@@ -255,7 +255,7 @@
        if (!StringUtils.isNullOrEmpty(error)) {
            throw new YamiShopBindException(error);
        }
        sysUserService.checkSafeWord(model.getLoginSafeword());
        //sysUserService.checkSafeWord(model.getLoginSafeword());
        C2cPaymentMethod method = adminC2cPaymentMethodService.get(model.getId());
        if (null == method) {
            throw new YamiShopBindException("支付方式不存在");
@@ -367,9 +367,9 @@
        if (StringUtils.isNullOrEmpty(param_value1)) {
            return "参数值1必填";
        }
        if (StringUtils.isNullOrEmpty(login_safeword)) {
        /*if (StringUtils.isNullOrEmpty(login_safeword)) {
            return "资金密码错误";
        }
        }*/
        return "";
    }
@@ -381,9 +381,9 @@
        if (StringUtils.isNullOrEmpty(param_value1)) {
            return "参数值1必填";
        }
        if (StringUtils.isNullOrEmpty(login_safeword)) {
        /*if (StringUtils.isNullOrEmpty(login_safeword)) {
            return "资金密码错误";
        }
        }*/
        return "";
    }
}