|
|
|
@ -20,6 +20,7 @@ import javax.annotation.Resource; |
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
import java.util.Objects; |
|
|
|
|
|
|
|
@Service |
|
|
|
public class WithdrawAuditQueryServiceImpl implements WithdrawAuditQueryService { |
|
|
|
@ -56,10 +57,12 @@ public class WithdrawAuditQueryServiceImpl implements WithdrawAuditQueryService |
|
|
|
export.setRemitStatus(vo.getRemitStatus() ? "是" : "否"); |
|
|
|
export.setWithdrawType(vo.getWithdrawType().getDesc()); |
|
|
|
Map<String, String> extDetailsInfo = vo.getExtDetailsInfo(); |
|
|
|
export.setExtDetailsInfo("银行卡号:" + extDetailsInfo.get(ThirdPartyField.CARD_NUM) + ";" |
|
|
|
+ "持卡人姓名:" + extDetailsInfo.get(ThirdPartyField.OWNER_NAME) + ";" |
|
|
|
+ "所属银行:" + extDetailsInfo.get(ThirdPartyField.BANK_NAME) + ";" |
|
|
|
+ "开户行:" + extDetailsInfo.get(ThirdPartyField.OPENING_BANK)); |
|
|
|
if (Objects.nonNull(extDetailsInfo)) { |
|
|
|
export.setExtDetailsInfo("银行卡号:" + extDetailsInfo.get(ThirdPartyField.CARD_NUM) + ";" |
|
|
|
+ "持卡人姓名:" + extDetailsInfo.get(ThirdPartyField.OWNER_NAME) + ";" |
|
|
|
+ "所属银行:" + extDetailsInfo.get(ThirdPartyField.BANK_NAME) + ";" |
|
|
|
+ "开户行:" + extDetailsInfo.get(ThirdPartyField.OPENING_BANK)); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
return list; |
|
|
|
|