| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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="rolesSqlMapper">
- <!--mybatis ehcache缓存配置 -->
- <!-- 以下两个<cache>标签二选一,第一个可以输出日志,第二个不输出日志
- <cache type="org.mybatis.caches.ehcache.LoggingEhcache" />-->
- <!-- <cache type="org.mybatis.caches.ehcache.EhcacheCache"/> -->
- <!-- 以下与实体类的中字段一致 -->
- <sql id="selectId">
- id,
- enable,
- name,
- roleKey,
- description
- </sql>
-
- <!--resultType="Roles" 每返回一条结果封装到Account里 -->
- <select id="query" resultType="com.cloudcross.ssp.model.Roles" parameterType="java.util.HashMap">
- select
- <include refid="selectId" />
- from t_ly_role
- <where>
- <if test="t.name != null and t.name != ''">
- name like '%${t.name}%'
- </if>
- </where>
- </select>
- <select id="queryAll" resultType="com.cloudcross.ssp.model.Roles" parameterType="com.cloudcross.ssp.model.Roles">
- select
- <include refid="selectId" />
- from t_ly_role
- <where>
- <if test="name != null and name != ''">
- name like '%${name}%'
- </if>
- </where>
- </select>
- <select id="isExist" resultType="com.cloudcross.ssp.model.Roles" parameterType="String">
- select
- <include refid="selectId" />
- from t_ly_role
- where name = #{name}
- </select>
-
- <insert id="add" parameterType="com.cloudcross.ssp.model.Roles">
- insert into t_ly_role ( enable,name,roleKey,description)
- values (#{enable},
- #{name}, #{roleKey},
- #{description})
- </insert>
- <delete id="delete" parameterType="String">
- delete from t_ly_role where
- id=#{id}
- </delete>
- <select id="getById" parameterType="String" resultType="com.cloudcross.ssp.model.Roles">
- select
- <include refid="selectId" />
- from t_ly_role where id=#{id}
- </select>
- <update id="update" parameterType="com.cloudcross.ssp.model.Roles">
- update t_ly_role
- <set>
- <if test="name != null and name != ''">
- name=#{name},
- </if>
- <if test="enable != null and enable != ''">
- enable=#{enable},
- </if>
- <if test="description != null and description != ''">
- description=#{description},
- </if>
- <if test="roleKey != null and roleKey != ''">
- roleKey=#{roleKey}
- </if>
- </set>
- where id=#{id}
- </update>
- <select id="findbyAccountRole" parameterType="String" resultType="com.cloudcross.ssp.model.Roles">
- select
- <include refid="selectId" />
- from t_ly_role where id in (SELECT role_id FROM t_acc_role WHERE acc_id=#{accountId})
- </select>
- <delete id="deleteAccountRole" parameterType="String">
- delete from t_acc_role
- where acc_id=#{accountId}
- </delete>
- <insert id="addAccRole" parameterType="com.cloudcross.ssp.model.RoleAccount">
- insert into t_acc_role (acc_id,role_id) value (#{accountId},#{roleId})
- </insert>
- </mapper>
|