From 5de326746457ef113a72cbff389daf4dbffa895f Mon Sep 17 00:00:00 2001 From: comdotwww <62149924+comdotwww@users.noreply.github.com> Date: Sat, 20 Apr 2024 16:02:40 +0800 Subject: [PATCH] Update ReconcileOrderQuery.java MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复 date 参数无法被“yyyy-MM-dd”格式的字符串解析 --- .../daxpay/service/param/reconcile/ReconcileOrderQuery.java | 1 + 1 file changed, 1 insertion(+) diff --git a/daxpay-single/daxpay-single-service/src/main/java/cn/bootx/platform/daxpay/service/param/reconcile/ReconcileOrderQuery.java b/daxpay-single/daxpay-single-service/src/main/java/cn/bootx/platform/daxpay/service/param/reconcile/ReconcileOrderQuery.java index 5b64fa8b0..c851b56ec 100644 --- a/daxpay-single/daxpay-single-service/src/main/java/cn/bootx/platform/daxpay/service/param/reconcile/ReconcileOrderQuery.java +++ b/daxpay-single/daxpay-single-service/src/main/java/cn/bootx/platform/daxpay/service/param/reconcile/ReconcileOrderQuery.java @@ -22,6 +22,7 @@ public class ReconcileOrderQuery { private String batchNo; @Schema(description = "日期") + @DateTimeFormat(pattern = "yyyy-MM-dd") private LocalDate date; @Schema(description = "通道")