Commit 07ae101e authored by chenyuxi's avatar chenyuxi

feat: offer查询调整

parent 0f0b91df
......@@ -32,8 +32,8 @@ import java.time.LocalDate;
@Data
public class TGzOfferInfoExportSearchVo extends TGzOfferInfo {
private LocalDate createTimeStart;
private LocalDate createTimeEnd;
private String createTimeStart;
private String createTimeEnd;
@TableField(exist = false)
@Schema(description = "id集合")
......
......@@ -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 @@
<if test="tGzOfferInfo.offerSendStatus != null and tGzOfferInfo.offerSendStatus.trim() != ''">
AND a.offer_send_status = #{tGzOfferInfo.offerSendStatus}
</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
<foreach item="item" index="index" collection="tGzOfferInfo.offerStatusArray" open="(" separator="," close=")">
'${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