| | |
| | | left join sys_user t2 on t1.escalation_id = t2.user_id |
| | | left join t_dict_data t3 on t1.escalation_type = t3.id |
| | | where 1=1 |
| | | <if test="query.feedbackContent != null and query.feedbackContent != ''"> |
| | | and t1.feedback_content like concat('%',#{query.feedbackContent},'%') |
| | | <if test="query.escalationContent != null and query.escalationContent != ''"> |
| | | and t1.escalation_content like concat('%',#{query.escalationContent},'%') |
| | | </if> |
| | | and t3.data_type = 3 |
| | | and t1.disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} |