|
@@ -39,11 +39,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="createBy != null and createBy != ''">
|
|
|
AND create_by like concat('%', #{createBy}, '%')
|
|
|
</if>
|
|
|
+ <if test="1 == 1">
|
|
|
+ and status = 0
|
|
|
+ </if>
|
|
|
<if test="noticeId != null and noticeId != ''">
|
|
|
AND noticeId = #{noticeId}
|
|
|
</if>
|
|
|
- order by notice_id desc
|
|
|
</where>
|
|
|
+ order by notice_id desc
|
|
|
</select>
|
|
|
|
|
|
<insert id="insertNotice" parameterType="com.usky.system.domain.SysNotice">
|