Compare commits

2 Commits
Author SHA1 Message Date
hejiayang 307cc42437 Merge remote-tracking branch 'origin/xc' into xc 2026-03-19 15:29:48 +08:00
hejiayang f7f27c34c9 fix(consultation):
姓名筛选sql调整(·特殊符号执行时查询不出结果)
2026-03-19 15:28:44 +08:00
@@ -109,10 +109,10 @@
)
</if>
<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 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 test="conSession.contentStatus != null and conSession.contentStatus != ''">
AND c.content_status = #{conSession.contentStatus}