@@ -21,7 +21,7 @@
AND p.process_name LIKE CONCAT(CONCAT('%',#{dto.processName}),'%')
</if>
<if test="dto.createBy != null and dto.createBy != '' ">
- AND t.create_by LIKE CONCAT(CONCAT('%',#{dto.createBy}),'%')
+ AND p.create_by LIKE CONCAT(CONCAT('%',#{dto.createBy}),'%')
<if test="dto.instanceState != null">
AND i.instance_state = #{dto.instanceState}
@@ -16,7 +16,7 @@
WHERE u.deleted = 0
<if test="vo != null">
<if test="vo.username != null">
- AND u.username LIKE CONCAT(CONCAT('%',#{vo.username}),'%')
+ AND (u.username LIKE CONCAT(CONCAT('%',#{vo.username}),'%') OR u.real_name LIKE CONCAT(CONCAT('%',#{vo.username}),'%'))
<if test="vo.jobNum != null">
AND u.job_num LIKE CONCAT(CONCAT('%',#{vo.jobNum}),'%')