|
@@ -1,96 +1,123 @@
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
<!DOCTYPE mapper
|
|
|
-PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
-"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
+ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
+ "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.usky.system.mapper.SysNoticeMapper">
|
|
|
-
|
|
|
+
|
|
|
<resultMap type="com.usky.system.domain.SysNotice" id="SysNoticeResult">
|
|
|
- <result property="noticeId" column="notice_id" />
|
|
|
- <result property="noticeTitle" column="notice_title" />
|
|
|
- <result property="noticeType" column="notice_type" />
|
|
|
- <result property="noticeContent" column="notice_content" />
|
|
|
- <result property="status" column="status" />
|
|
|
- <result property="createBy" column="create_by" />
|
|
|
- <result property="createTime" column="create_time" />
|
|
|
- <result property="updateBy" column="update_by" />
|
|
|
- <result property="updateTime" column="update_time" />
|
|
|
- <result property="remark" column="remark" />
|
|
|
+ <result property="noticeId" column="notice_id"/>
|
|
|
+ <result property="noticeTitle" column="notice_title"/>
|
|
|
+ <result property="noticeType" column="notice_type"/>
|
|
|
+ <result property="noticeContent" column="notice_content"/>
|
|
|
+ <result property="status" column="status"/>
|
|
|
+ <result property="createBy" column="create_by"/>
|
|
|
+ <result property="createTime" column="create_time"/>
|
|
|
+ <result property="updateBy" column="update_by"/>
|
|
|
+ <result property="updateTime" column="update_time"/>
|
|
|
+ <result property="fileUrl" column="file_url"/>
|
|
|
+ <result property="author" column="author"/>
|
|
|
+ <result property="deptId" column="dept_id"/>
|
|
|
</resultMap>
|
|
|
-
|
|
|
+
|
|
|
<sql id="selectNoticeVo">
|
|
|
- select notice_id, notice_title, notice_type, cast(notice_content as char) as notice_content, status, create_by, create_time, update_by, update_time, remark
|
|
|
- from sys_notice
|
|
|
+ select notice_id,
|
|
|
+ notice_title,
|
|
|
+ notice_type,
|
|
|
+ notice_content,
|
|
|
+ status,
|
|
|
+ create_by,
|
|
|
+ create_time,
|
|
|
+ update_by,
|
|
|
+ update_time,
|
|
|
+ file_url,
|
|
|
+ author,
|
|
|
+ dept_id
|
|
|
+ from sys_notice
|
|
|
</sql>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectNoticeById" parameterType="Long" resultMap="SysNoticeResult">
|
|
|
<include refid="selectNoticeVo"/>
|
|
|
where notice_id = #{noticeId}
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectNoticeList" parameterType="com.usky.system.domain.SysNotice" resultMap="SysNoticeResult">
|
|
|
<include refid="selectNoticeVo"/>
|
|
|
<where>
|
|
|
- <if test="noticeTitle != null and noticeTitle != ''">
|
|
|
- AND notice_title like concat('%', #{noticeTitle}, '%')
|
|
|
- </if>
|
|
|
- <if test="noticeType != null and noticeType != ''">
|
|
|
- AND notice_type = #{noticeType}
|
|
|
- </if>
|
|
|
- <if test="createBy != null and createBy != ''">
|
|
|
- AND create_by like concat('%', #{createBy}, '%')
|
|
|
- </if>
|
|
|
- <if test="1 == 1">
|
|
|
+ <if test="noticeTitle != null and noticeTitle != ''">
|
|
|
+ AND notice_title like concat('%', #{noticeTitle}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="noticeType != null and noticeType != ''">
|
|
|
+ AND notice_type = #{noticeType}
|
|
|
+ </if>
|
|
|
+ <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 notice_id = #{noticeId}
|
|
|
</if>
|
|
|
- </where>
|
|
|
+ <if test="startTime != null and endTime != null">
|
|
|
+ AND create_time BETWEEN #{startTime} AND #{endTime}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
order by notice_id desc
|
|
|
</select>
|
|
|
-
|
|
|
- <insert id="insertNotice" useGeneratedKeys="true" keyProperty="noticeId" parameterType="com.usky.system.domain.SysNotice">
|
|
|
+
|
|
|
+ <insert id="insertNotice" useGeneratedKeys="true" keyProperty="noticeId"
|
|
|
+ parameterType="com.usky.system.domain.SysNotice">
|
|
|
insert into sys_notice (
|
|
|
- <if test="noticeTitle != null and noticeTitle != '' ">notice_title, </if>
|
|
|
- <if test="noticeType != null and noticeType != '' ">notice_type, </if>
|
|
|
- <if test="noticeContent != null and noticeContent != '' ">notice_content, </if>
|
|
|
- <if test="status != null and status != '' ">status, </if>
|
|
|
- <if test="remark != null and remark != ''">remark,</if>
|
|
|
- <if test="createBy != null and createBy != ''">create_by,</if>
|
|
|
- create_time
|
|
|
- )values(
|
|
|
- <if test="noticeTitle != null and noticeTitle != ''">#{noticeTitle}, </if>
|
|
|
- <if test="noticeType != null and noticeType != ''">#{noticeType}, </if>
|
|
|
- <if test="noticeContent != null and noticeContent != ''">#{noticeContent}, </if>
|
|
|
- <if test="status != null and status != ''">#{status}, </if>
|
|
|
- <if test="remark != null and remark != ''">#{remark},</if>
|
|
|
- <if test="createBy != null and createBy != ''">#{createBy},</if>
|
|
|
- sysdate()
|
|
|
- )
|
|
|
+ <if test="noticeTitle != null and noticeTitle != '' ">notice_title,</if>
|
|
|
+ <if test="noticeType != null and noticeType != '' ">notice_type,</if>
|
|
|
+ <if test="noticeContent != null and noticeContent != '' ">notice_content,</if>
|
|
|
+ <if test="status != null and status != '' ">status,</if>
|
|
|
+ <if test="createBy != null and createBy != ''">create_by,</if>
|
|
|
+ <if test="fileUrl != null and fileUrl != ''">file_url,</if>
|
|
|
+ <if test="author != null and author != ''">author,</if>
|
|
|
+ <if test="deptId != null and deptId != ''">dept_id,</if>
|
|
|
+ create_time
|
|
|
+ )values(
|
|
|
+ <if test="noticeTitle != null and noticeTitle != ''">#{noticeTitle},</if>
|
|
|
+ <if test="noticeType != null and noticeType != ''">#{noticeType},</if>
|
|
|
+ <if test="noticeContent != null and noticeContent != ''">#{noticeContent},</if>
|
|
|
+ <if test="status != null and status != ''">#{status},</if>
|
|
|
+ <if test="createBy != null and createBy != ''">#{createBy},</if>
|
|
|
+ <if test="fileUrl != null and fileUrl != ''">#{fileUrl},</if>
|
|
|
+ <if test="author != null and author != ''">#{author},</if>
|
|
|
+ <if test="deptId != null and deptId != ''">#{deptId},</if>
|
|
|
+ sysdate()
|
|
|
+ )
|
|
|
</insert>
|
|
|
-
|
|
|
+
|
|
|
<update id="updateNotice" parameterType="com.usky.system.domain.SysNotice">
|
|
|
- update sys_notice
|
|
|
+ update sys_notice
|
|
|
<set>
|
|
|
- <if test="noticeTitle != null and noticeTitle != ''">notice_title = #{noticeTitle}, </if>
|
|
|
- <if test="noticeType != null and noticeType != ''">notice_type = #{noticeType}, </if>
|
|
|
- <if test="noticeContent != null">notice_content = #{noticeContent}, </if>
|
|
|
- <if test="status != null and status != ''">status = #{status}, </if>
|
|
|
+ <if test="noticeTitle != null and noticeTitle != ''">notice_title = #{noticeTitle},</if>
|
|
|
+ <if test="noticeType != null and noticeType != ''">notice_type = #{noticeType},</if>
|
|
|
+ <if test="noticeContent != null">notice_content = #{noticeContent},</if>
|
|
|
+ <if test="status != null and status != ''">status = #{status},</if>
|
|
|
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
|
|
- update_time = sysdate()
|
|
|
+ <if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
+ <if test="fileUrl != null and fileUrl != ''">file_url = #{fileUrl},</if>
|
|
|
+ <if test="author != null and author != ''">author = #{author},</if>
|
|
|
+ <if test="deptId != null and deptId != ''">dept_id = #{deptId},</if>
|
|
|
+ update_time = sysdate()
|
|
|
</set>
|
|
|
where notice_id = #{noticeId}
|
|
|
</update>
|
|
|
-
|
|
|
+
|
|
|
<delete id="deleteNoticeById" parameterType="Long">
|
|
|
- delete from sys_notice where notice_id = #{noticeId}
|
|
|
+ delete
|
|
|
+ from sys_notice
|
|
|
+ where notice_id = #{noticeId}
|
|
|
</delete>
|
|
|
-
|
|
|
+
|
|
|
<delete id="deleteNoticeByIds" parameterType="Long">
|
|
|
- delete from sys_notice where notice_id in
|
|
|
+ delete from sys_notice where notice_id in
|
|
|
<foreach item="noticeIds" collection="param1" open="(" separator="," close=")">
|
|
|
#{noticeIds}
|
|
|
</foreach>
|
|
|
</delete>
|
|
|
-
|
|
|
+
|
|
|
</mapper>
|