|
|
@@ -124,10 +124,22 @@ public class HlwPaymentApiController extends JeecgController<HlwPayment, IHlwPay
|
|
|
Integer status = jsonObject.getInteger("status");
|
|
|
Integer applicationId = jsonObject.getInteger("applicationId");
|
|
|
String userCode = jsonObject.getString("userCode");
|
|
|
+ String paymentResultTimeBegin = jsonObject.getString("paymentResultTimeBegin");
|
|
|
+ String paymentResultTimeEnd = jsonObject.getString("paymentResultTimeEnd");
|
|
|
HlwPaymentDetail hlwPaymentDetail = new HlwPaymentDetail();
|
|
|
hlwPaymentDetail.setPaymentId(paymentId);
|
|
|
hlwPaymentDetail.setStatus(status);
|
|
|
if (pageSize == -1) {
|
|
|
+ if (StringUtils.isNotBlank(userCode)) {
|
|
|
+ hlwPaymentDetail.setUserCode(userCode);
|
|
|
+ hlwPaymentDetail.setApplicationId(applicationId);
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotBlank(paymentResultTimeBegin)) {
|
|
|
+ hlwPaymentDetail.setPaymentResultTime_begin(paymentResultTimeBegin + "-01");
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotBlank(paymentResultTimeEnd)) {
|
|
|
+ hlwPaymentDetail.setPaymentResultTime_end(paymentResultTimeEnd + "-01");
|
|
|
+ }
|
|
|
List<HlwPaymentDetail> list = hlwPaymentDetailService.paymentDetailListNoPage(hlwPaymentDetail);
|
|
|
return Result.ok(list);
|
|
|
} else {
|