Commit 07ae101e authored by chenyuxi's avatar chenyuxi

feat: offer查询调整

parent 0f0b91df
...@@ -32,8 +32,8 @@ import java.time.LocalDate; ...@@ -32,8 +32,8 @@ import java.time.LocalDate;
@Data @Data
public class TGzOfferInfoExportSearchVo extends TGzOfferInfo { public class TGzOfferInfoExportSearchVo extends TGzOfferInfo {
private LocalDate createTimeStart; private String createTimeStart;
private LocalDate createTimeEnd; private String createTimeEnd;
@TableField(exist = false) @TableField(exist = false)
@Schema(description = "id集合") @Schema(description = "id集合")
......
...@@ -35,11 +35,11 @@ public class TGzOfferInfoVo extends TGzOfferInfo { ...@@ -35,11 +35,11 @@ public class TGzOfferInfoVo extends TGzOfferInfo {
/** /**
* 查询使用:接收时间开始 * 查询使用:接收时间开始
*/ */
private LocalDate createTimeStart; private String createTimeStart;
/** /**
* 查询使用:接收时间结束 * 查询使用:接收时间结束
*/ */
private LocalDate createTimeEnd; private String createTimeEnd;
/** /**
* 批量发送短信使用 * 批量发送短信使用
......
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
<if test="tGzOfferInfo.offerSendStatus != null and tGzOfferInfo.offerSendStatus.trim() != ''"> <if test="tGzOfferInfo.offerSendStatus != null and tGzOfferInfo.offerSendStatus.trim() != ''">
AND a.offer_send_status = #{tGzOfferInfo.offerSendStatus} AND a.offer_send_status = #{tGzOfferInfo.offerSendStatus}
</if> </if>
<if test="tGzOfferInfo.offerStatusArray != null and tGzOfferInfo.offerStatusArray.size() > 0"> <if test="tGzOfferInfo.offerStatusArray != null and tGzOfferInfo.offerStatusArray.length > 0">
AND a.offer_status in AND a.offer_status in
<foreach item="item" index="index" collection="tGzOfferInfo.offerStatusArray" open="(" separator="," close=")"> <foreach item="item" index="index" collection="tGzOfferInfo.offerStatusArray" open="(" separator="," close=")">
'${item}' '${item}'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment