|
|
@@ -1,6 +1,8 @@
|
|
|
package com.zhongshu.payment.server.core.service.pay.impl.wallet;
|
|
|
|
|
|
import ch.qos.logback.core.util.StringUtil;
|
|
|
+import cn.hutool.json.JSONUtil;
|
|
|
+import cn.hutool.json.ObjectMapper;
|
|
|
import com.github.microservice.auth.security.helper.AuthHelper;
|
|
|
import com.github.microservice.models.type.PaymentType;
|
|
|
import com.github.microservice.net.ResultContent;
|
|
|
@@ -177,6 +179,7 @@ public class WalletMainService extends SuperPayService {
|
|
|
if (ObjectUtils.isNotEmpty(countModel)) {
|
|
|
wallet.setUnitName(countModel.getName());
|
|
|
wallet.setPhone(countModel.getPhone());
|
|
|
+ wallet.setUnitInfo(countModel);
|
|
|
}
|
|
|
}
|
|
|
wallet.setWalletDataId(userId);
|
|
|
@@ -187,6 +190,7 @@ public class WalletMainService extends SuperPayService {
|
|
|
if (ObjectUtils.isNotEmpty(simpleModel)) {
|
|
|
wallet.setUnitName(simpleModel.getName());
|
|
|
wallet.setPhone(simpleModel.getContactPhone());
|
|
|
+ wallet.setUnitInfo(simpleModel);
|
|
|
}
|
|
|
}
|
|
|
organizationFeignService.getOidAboutOrgInfo(shopId);
|