From f54c1bb8c0886534d7f3d6f3c31acfdbf5cb302d Mon Sep 17 00:00:00 2001 From: dengjun Date: Tue, 26 Dec 2023 10:37:01 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=9B=E6=B8=AF=E6=9F=A5=E8=AF=A2=E6=97=A5?= =?UTF-8?q?=E6=9C=9F=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../haitonggauto/rtosc/query/ExportInCheckQuery.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nuzar-customer-client/src/main/java/com/haitonggauto/rtosc/query/ExportInCheckQuery.java b/nuzar-customer-client/src/main/java/com/haitonggauto/rtosc/query/ExportInCheckQuery.java index 50e004c..76c24cf 100644 --- a/nuzar-customer-client/src/main/java/com/haitonggauto/rtosc/query/ExportInCheckQuery.java +++ b/nuzar-customer-client/src/main/java/com/haitonggauto/rtosc/query/ExportInCheckQuery.java @@ -47,22 +47,22 @@ public class ExportInCheckQuery extends BaseQuery { @JsonFormat(pattern = "yyyy-MM-dd") @ApiModelProperty(value = "开始申请时间") @DbQuery(field = "applyTime", symbol = SqlSymbol.GTE) - private Date beginEnterTime; + private Date beginApplyTime; @JsonFormat(pattern = "yyyy-MM-dd") @ApiModelProperty(value = "结束申请时间") @DbQuery(field = "applyTime", symbol = SqlSymbol.LTE) - private Date endEnterTime; + private Date endApplyTime; - @JsonFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "开始进场时间") @DbQuery(field = "beginEnterTime", symbol = SqlSymbol.GTE) - private Date beginApplyTime; + private Date beginEnterTime; - @JsonFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "结束进场时间") @DbQuery(field = "endEnterTime", symbol = SqlSymbol.LTE) - private Date endApplyTime; + private Date endEnterTime; @ApiModelProperty(value = "贸易类型") private String tradType;