update
This commit is contained in:
@@ -29,11 +29,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<include refid="selectCompanyJobLiveVo"/>
|
||||
where 1=1
|
||||
<if test="title != null and title != ''">
|
||||
and l.title like CONCAT('%',#{title},'%')
|
||||
and l.title like '%' || #{title} || '%'
|
||||
</if>
|
||||
<if test="companyName != null and companyName != ''">
|
||||
and c.name like CONCAT('%',#{companyName},'%')
|
||||
and c.name like '%' || #{companyName} || '%'
|
||||
</if>
|
||||
and TO_TIMESTAMP(l.end_time, 'YYYY-MM-DD HH24:MI:SS') >= sysdate()
|
||||
|
||||
order by l.create_time desc
|
||||
</select>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user