查询交易明细
This commit is contained in:
parent
3cc0acb065
commit
6b19e593f6
|
@ -32,6 +32,7 @@ import org.springframework.beans.factory.annotation.Value;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -173,7 +174,10 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
|
||||||
public void elecBillUpload(JSONObject requestJson) throws Exception {
|
public void elecBillUpload(JSONObject requestJson) throws Exception {
|
||||||
//查询支付成功 没有电子回单的数据
|
//查询支付成功 没有电子回单的数据
|
||||||
PaymentEntity paymentEntity = new PaymentEntity();
|
PaymentEntity paymentEntity = new PaymentEntity();
|
||||||
List<PaymentEntity> paymentList = paymentService.queryElecIsNull(paymentEntity);
|
// List<PaymentEntity> paymentList = paymentService.queryElecIsNull(paymentEntity);
|
||||||
|
paymentEntity.setPayDate("2024-06-20");
|
||||||
|
paymentEntity.setReferenceNum("41");
|
||||||
|
List<PaymentEntity> paymentList = Arrays.asList(paymentEntity);
|
||||||
if (CollectionUtils.isNotEmpty(paymentList)) {
|
if (CollectionUtils.isNotEmpty(paymentList)) {
|
||||||
for (PaymentEntity pay : paymentList) {
|
for (PaymentEntity pay : paymentList) {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue