feat:添加排序

hangao-new
wangxy 10 months ago
parent 58c1a1bf9b
commit c0a231a145

@ -123,13 +123,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectNoticeHomeSearch" parameterType="String" resultType="SysTitleVo">
SELECT t.notice_id as id, t.notice_title as title,t.create_time as createTime,t.type from sys_notice t where t.notice_title like concat('%', #{title}, '%') AND t.status = '0'
union all
SELECT w.work_id as id, w.work_title as title,w.create_time as createTime,w.type from sys_work w where w.work_title like concat('%', #{title}, '%')
SELECT w.work_id as id, w.work_title as title,w.create_time as createTime,w.type from sys_work w where w.work_title like concat('%', #{title}, '%') AND w.status = '0'
union all
SELECT b.business_id as id, b.business_title as title, b.create_time as createTime, b.type from sys_business b where b.business_title like concat('%', #{title}, '%')
SELECT b.business_id as id, b.business_title as title, b.create_time as createTime, b.type from sys_business b where b.business_title like concat('%', #{title}, '%') AND b.status = '0'
union all
SELECT d.trends_id as id, d.trends_title as title, d.create_time as createTime, d.type from sys_dept_trends d where d.trends_title like concat('%', #{title}, '%')
SELECT d.trends_id as id, d.trends_title as title, d.create_time as createTime, d.type from sys_dept_trends d where d.trends_title like concat('%', #{title}, '%') AND d.status = '0'
union all
SELECT s.special_id as id, s.special_title as title, s.create_time as createTime,s.type from sys_special s where s.special_title like concat('%', #{title}, '%')
SELECT s.special_id as id, s.special_title as title, s.create_time as createTime,s.type from sys_special s where s.special_title like concat('%', #{title}, '%') AND s.status = '0'
</select>
<select id="selectNoticeHomeUrl" parameterType="SysNotice" resultMap="SysNoticeResult">

Loading…
Cancel
Save