123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- <?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">
- <mapper namespace="cn.ourwill.module.sys.dao.SysNoticeDao">
- <resultMap type="cn.ourwill.module.sys.entity.SysNotice" id="baseMap">
- <result column="id" property="id"/>
- <result column="type" property="type"/>
- <result column="uuid" property="uuid"/>
- <result column="u_id" property="uId"/>
- <result column="u_time" property="uTime"/>
- <result column="c_id" property="cId"/>
- <result column="c_time" property="cTime"/>
- <result column="content" property="content"/>
- <result column="version" property="version"/>
- <result column="title" property="title"/>
- <result column="vcount" property="vcount"/>
- <result column="name" property="userName"/>
- <result column="sender" property="sender"/>
- </resultMap>
- <sql id="columns">
- sol.id ,
- sol.type ,
- sol.uuid ,
- sol.u_id ,
- sol.u_time ,
- sol.c_id ,
- sol.c_time ,
- sol.content ,
- sol.version ,
- sol.title ,
- sol.vcount,
- u.name,
- sol.sender
- </sql>
- <sql id="joinCols">
- left join sys_user u on sol.c_id=u.id
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_notice a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_notice sol
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and sol.id = #{id}
- </if>
- <if test="searchStartDate !=null">
- and sol.c_time <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and sol.c_time <= #{searchEndDate}
- </if>
- <if test="type !=null">
- and sol.`type` = #{type}
- </if>
- <if test="uuid !=null">
- and sol.uuid = #{uuid}
- </if>
- <if test="uId !=null">
- and sol.u_id = #{uId}
- </if>
- <if test="uTime !=null">
- and sol.u_time = #{uTime}
- </if>
- <if test="cId !=null">
- and sol.c_id = #{cId}
- </if>
- <if test="searchStartDate !=null">
- and sol.c_time <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and sol.c_time <= #{searchEndDate}
- </if>
- <if test="content !=null">
- and sol.content = #{content}
- </if>
- <if test="version !=null">
- and sol.version = #{version}
- </if>
- <if test="title !=null">
- and sol.title = #{title}
- </if>
- <if test="vcount !=null">
- and sol.vcount = #{vcount}
- </if>
- <if test="userName !=null">
- and u.name = #{userName}
- </if>
- <if test="sender !=null">
- and sol.sender = #{sender}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <select id="findAllList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_notice sol
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and sol.id = #{id}
- </if>
- <if test="searchStartDate !=null">
- and sol.c_time <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and sol.c_time <= #{searchEndDate}
- </if>
- <if test="type !=null">
- and sol.`type` = #{type}
- </if>
- <if test="uuid !=null">
- and sol.uuid = #{uuid}
- </if>
- <if test="uId !=null">
- and sol.u_id = #{uId}
- </if>
- <if test="uTime !=null">
- and sol.u_time = #{uTime}
- </if>
- <if test="cId !=null">
- and sol.c_id = #{cId}
- </if>
- <if test="content !=null">
- and sol.content = #{content}
- </if>
- <if test="version !=null">
- and sol.version = #{version}
- </if>
- <if test="title !=null">
- and sol.title = #{title}
- </if>
- <if test="vcount !=null">
- and sol.vcount = #{vcount}
- </if>
- <if test="sender !=null">
- and sol.sender = #{sender}
- </if>
- <if test="userName !=null">
- and u.name = #{userName}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.sys.entity.SysNotice">
- INSERT INTO sys_notice
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" type != null">
- `type`,
- </if>
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" uId != null">
- u_id,
- </if>
- <if test=" uTime != null">
- u_time,
- </if>
- <if test=" cId != null">
- c_id,
- </if>
- <if test=" cTime != null">
- c_time,
- </if>
- <if test=" content != null">
- content,
- </if>
- <if test=" version != null">
- version,
- </if>
- <if test=" title != null">
- title,
- </if>
- <if test=" vcount != null">
- vcount
- </if>
- <if test=" sender!=null">
- sender
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" type != null">
- #{type}, </if>
- <if test=" uuid != null">
- #{uuid}, </if>
- <if test=" uId != null">
- #{uId}, </if>
- <if test=" uTime != null">
- #{uTime}, </if>
- <if test=" cId != null">
- #{cId}, </if>
- <if test=" cTime != null">
- #{cTime}, </if>
- <if test=" content != null">
- #{content}, </if>
- <if test=" version != null">
- #{version}, </if>
- <if test=" title != null">
- #{title}, </if>
- <if test=" vcount != null">
- #{vcount} </if>
- <if test=" sender !=null">
- #{sender} </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.sys.entity.SysNotice">
- UPDATE sys_notice <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="type != null">
- `type`= #{type} ,
- </if>
- <if test="uuid != null">
- uuid= #{uuid} ,
- </if>
- <if test="uId != null">
- u_id= #{uId} ,
- </if>
- <if test="uTime != null">
- u_time= #{uTime} ,
- </if>
- <if test="cId != null">
- c_id= #{cId} ,
- </if>
- <if test="cTime != null">
- c_time= #{cTime} ,
- </if>
- <if test="content != null">
- content= #{content} ,
- </if>
- <if test="version != null">
- version= #{version} ,
- </if>
- <if test="title != null">
- title= #{title} ,
- </if>
- <if test="vcount != null">
- vcount= #{vcount}
- </if>
- <if test="sender != null">
- sender= #{sender}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM sys_notice WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM sys_notice WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|