Compare commits
2
Commits
a975e9d223
...
307cc42437
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
307cc42437 | ||
|
|
f7f27c34c9 |
+2
-2
@@ -109,10 +109,10 @@
|
|||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
<if test="conSession.fromName != null and conSession.fromName != ''">
|
<if test="conSession.fromName != null and conSession.fromName != ''">
|
||||||
AND c.from_name LIKE CONCAT('%', #{conSession.fromName}, '%')
|
AND INSTR(c.from_name, #{conSession.fromName}) > 0
|
||||||
</if>
|
</if>
|
||||||
<if test="conSession.doctorName != null and conSession.doctorName != ''">
|
<if test="conSession.doctorName != null and conSession.doctorName != ''">
|
||||||
AND c.to_name LIKE CONCAT('%', #{conSession.doctorName}, '%')
|
AND INSTR(c.to_name, #{conSession.doctorName}) > 0
|
||||||
</if>
|
</if>
|
||||||
<if test="conSession.contentStatus != null and conSession.contentStatus != ''">
|
<if test="conSession.contentStatus != null and conSession.contentStatus != ''">
|
||||||
AND c.content_status = #{conSession.contentStatus}
|
AND c.content_status = #{conSession.contentStatus}
|
||||||
|
|||||||
Reference in New Issue
Block a user