Compare commits
2 Commits
570e07d720
...
56c1c93f7c
Author | SHA1 | Date | |
---|---|---|---|
![]() |
56c1c93f7c | ||
![]() |
e2975ea46b |
@ -45,5 +45,4 @@ public class AppNoticeQuery {
|
||||
private String cityName;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -316,6 +316,10 @@ order by dbns.create_time desc
|
||||
WHERE
|
||||
dbn.del_flag = 0
|
||||
AND (dbn.approval_status = '1')
|
||||
<if test="entity.searchValue!=null and entity.searchValue!='' ">
|
||||
AND (dbn.title LIKE CONCAT('%',#{entity.searchValue},'%') OR
|
||||
dbn.gift_detail LIKE CONCAT('%',#{entity.searchValue},'%'))
|
||||
</if>
|
||||
<if test="entity.reportStatus!=null and entity.reportStatus!='' ">
|
||||
<choose>
|
||||
<when test="entity.reportStatus=='审核中'">
|
||||
@ -356,6 +360,10 @@ order by dbns.create_time desc
|
||||
LEFT join dl_busi_notice_sign sign on sign.notice_id = dbn.id and sign.del_flag = 0
|
||||
WHERE
|
||||
dbn.del_flag = 0 and dbn.approval_status !=8 and dbn.user_id = #{entity.userId}
|
||||
<if test="entity.searchValue!=null and entity.searchValue!='' ">
|
||||
AND (dbn.title LIKE CONCAT('%',#{entity.searchValue},'%') OR
|
||||
dbn.gift_detail LIKE CONCAT('%',#{entity.searchValue},'%'))
|
||||
</if>
|
||||
<if test="entity.status!=null and entity.status!='' ">
|
||||
<choose>
|
||||
<when test="entity.status=='进行中'">
|
||||
|
Loading…
Reference in New Issue
Block a user