新版仿ok交易所-后端
1
zj
yesterday f31fc9f42f78de0808e7f4bdc797c5e622df09e3
trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiC2cUserController.java
@@ -71,12 +71,12 @@
            C2cUser c2cUser = this.c2cUserService.getById(c2c_user_id);
            if (null == c2cUser) {
                throw new BusinessException("承兑商不存在");
                throw new BusinessException("Merchant does not exist");
            }
            C2cUserParamBaseSet paramBaseSet = this.c2cUserParamBaseSetService.getByPartyId(c2cUser.getC2cUserPartyId());
            if (null == paramBaseSet) {
                throw new BusinessException("承兑商参数基础设置不存在");
                throw new BusinessException("Merchant base settings do not exist");
            }
            if (StringUtils.isNotEmpty(c2cUser.getHeadImg())) {
@@ -86,7 +86,7 @@
            User party = userService.getById(c2cUser.getC2cUserPartyId());
            if (null == party) {
                throw new YamiShopBindException("承兑商的用户信息不存在");
                throw new YamiShopBindException("Merchant user info does not exist");
            }
            DecimalFormat df = new DecimalFormat("#.########");