123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- <?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.SysModuleDao">
- <resultMap type="cn.ourwill.module.sys.entity.SysModule" id="baseMap">
- <result column="id" property="id"/>
- <result column="pid" property="pid"/>
- <result column="name" property="text"/>
- <result column="url" property="url"/>
- <result column="type" property="type"/>
- <result column="desc" property="desc"/>
- <result column="sort" property="sort"/>
- <result column="version" property="version"/>
- <result column="status" property="status"/>
- </resultMap>
- <sql id="columns">
- id ,
- pid ,
- `name` ,
- url ,
- `type`,
- `desc` ,
- sort ,
- version,
- status
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_module a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_module a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="pid !=null">
- and pid = #{pid}
- </if>
- <if test="text !=null">
- and `name` = #{text}
- </if>
- <if test="url !=null">
- and url = #{url}
- </if>
- <if test="desc !=null">
- and `desc` = #{desc}
- </if>
- <if test="sort !=null">
- and sort = #{sort}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- <if test="status !=null">
- and status = #{status}
- </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_module a
- <include refid="joinCols"/>
- <where>
- and status="1"
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="pid !=null">
- and pid = #{pid}
- </if>
- <if test="text !=null">
- and `name` = #{text}
- </if>
- <if test="url !=null">
- and url = #{url}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- <if test="status !=null">
- and status = #{status}
- </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.SysModule">
- INSERT INTO sys_module
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" pid != null">
- pid,
- </if>
- <if test=" text != null">
- `name`,
- </if>
- <if test=" url != null">
- url,
- </if>
- <if test=" desc != null">
- `desc`,
- </if>
- <if test=" sort != null">
- sort,
- </if>
- <if test=" type != null">
- `type`,
- </if>
- <if test=" version != null">
- version,
- </if>
- <if test=" status != null">
- status
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" pid != null">
- #{pid}, </if>
- <if test=" text != null">
- #{text}, </if>
- <if test=" url != null">
- #{url}, </if>
- <if test=" desc != null">
- #{desc}, </if>
- <if test=" sort != null">
- #{sort}, </if>
- <if test=" type != null">
- #{type}, </if>
- <if test=" version != null">
- #{version}, </if>
- <if test=" version != null">
- #{status} </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.sys.entity.SysModule">
- UPDATE sys_module <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="pid != null">
- pid= #{pid} ,
- </if>
- <if test="text != null">
- `name`= #{text} ,
- </if>
- <if test="url != null">
- url= #{url} ,
- </if>
- <if test="desc != null">
- `desc`= #{desc} ,
- </if>
- <if test="sort != null">
- sort= #{sort} ,
- </if>
- <if test="type != null">
- `type`= #{type} ,
- </if>
- <if test="version != null">
- version= #{version},
- </if>
- <if test="status != null">
- status= #{status}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM sys_module WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM sys_module WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item},
- </foreach>
- </delete>
- <select id="getModuleByIds" parameterType="java.util.List" resultType="java.util.List">
- SELECT
- *
- FROM
- sys_module
- where id in
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item},
- </foreach>
- </select>
- <select id="getModuleById" parameterType="java.lang.Long" resultType="cn.ourwill.module.sys.entity.SysModule">
- SELECT
- *
- FROM
- sys_module
- where id=#{VALUE }
- </select>
- <select id="getChildModule" resultMap="baseMap">
- SELECT
- *
- FROM
- sys_module
- where pid=#{VALUE }
- </select>
- </mapper>
|