提交 063f8661 作者: xiaowang

报错修复

上级 d2e45d82
package com.mmc.payment.model.dto.user; package com.mmc.payment.model.dto.user;
import com.mmc.payment.model.dto.role.RoleInfoDTO; import com.mmc.payment.model.dto.role.RoleInfoDTO;
import com.mmc.payment.model.vo.user.CompanyInfoVO;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
import lombok.Data; import lombok.Data;
......
...@@ -20,6 +20,7 @@ import com.mmc.payment.model.dto.repo.PayCashResultDTO; ...@@ -20,6 +20,7 @@ import com.mmc.payment.model.dto.repo.PayCashResultDTO;
import com.mmc.payment.model.dto.repo.RepoCashDTO; import com.mmc.payment.model.dto.repo.RepoCashDTO;
import com.mmc.payment.model.dto.repo.RepoWalletDTO; import com.mmc.payment.model.dto.repo.RepoWalletDTO;
import com.mmc.payment.model.dto.user.BaseAccountDTO; import com.mmc.payment.model.dto.user.BaseAccountDTO;
import com.mmc.payment.model.dto.user.UserAccountSimpleDTO;
import com.mmc.payment.model.qo.RepoCashQO; import com.mmc.payment.model.qo.RepoCashQO;
import com.mmc.payment.model.qo.UserCashQO; import com.mmc.payment.model.qo.UserCashQO;
import com.mmc.payment.model.qo.WalletMessageQO; import com.mmc.payment.model.qo.WalletMessageQO;
...@@ -98,7 +99,7 @@ public class RepoCashServiceImpl implements RepoCashService { ...@@ -98,7 +99,7 @@ public class RepoCashServiceImpl implements RepoCashService {
UserAccountSimpleDTO account = JSON.parseObject(responseEntity.getBody(), UserAccountSimpleDTO.class); UserAccountSimpleDTO account = JSON.parseObject(responseEntity.getBody(), UserAccountSimpleDTO.class);
list.stream().forEach(t -> { list.stream().forEach(t -> {
if (t.getCreateUser().equals(account.getId())) { if (t.getCreateUser().equals(account.getId())) {
t.setAccountName(account.getAccountNo()); t.setAccountName(account.getUserName());
t.setUserName(account.getUserName()); t.setUserName(account.getUserName());
} }
}); });
......
...@@ -34,6 +34,7 @@ wx: ...@@ -34,6 +34,7 @@ wx:
mchid: 1648653533 #商户id mchid: 1648653533 #商户id
mch-number: 7BF5931E5A177A94E2F3A41C839A616ECBA86718 #商户序列号 mch-number: 7BF5931E5A177A94E2F3A41C839A616ECBA86718 #商户序列号
api-v3-key: MMcaFDcly5Eb5o0nTNZdu3ek8DDh4K1B #apiv3密钥 api-v3-key: MMcaFDcly5Eb5o0nTNZdu3ek8DDh4K1B #apiv3密钥
notify-url: https://test.iuav.shop/payment/wechat/payCallback
aliyun: aliyun:
oss: oss:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论