| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <?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="com.chinaitop.depot.business.mapper.RoleInfoMapper" >
- <resultMap id="BaseResultMap" type="com.chinaitop.depot.business.model.RoleInfo" >
- <id column="role_id" property="roleId" jdbcType="INTEGER" />
- <result column="role_name" property="roleName" jdbcType="VARCHAR" />
- <result column="parent_id" property="parentId" jdbcType="INTEGER" />
- <result column="remark" property="remark" jdbcType="VARCHAR" />
- <result column="del_flag" property="delFlag" jdbcType="INTEGER" />
- <result column="org_id" property="orgId" jdbcType="INTEGER" />
- </resultMap>
- <sql id="Example_Where_Clause" >
- <where >
- <foreach collection="oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Update_By_Example_Where_Clause" >
- <where >
- <foreach collection="example.oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Base_Column_List" >
- role_id, role_name, parent_id, remark, del_flag, org_id
- </sql>
- <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.business.model.RoleInfoExample" >
- select
- <if test="distinct" >
- distinct
- </if>
- <include refid="Base_Column_List" />
- from role_info
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- <if test="orderByClause != null" >
- order by ${orderByClause}
- </if>
- </select>
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
- select
- <include refid="Base_Column_List" />
- from role_info
- where role_id = #{roleId,jdbcType=INTEGER}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
- delete from role_info
- where role_id = #{roleId,jdbcType=INTEGER}
- </delete>
- <delete id="deleteByExample" parameterType="com.chinaitop.depot.business.model.RoleInfoExample" >
- delete from role_info
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </delete>
- <insert id="insert" parameterType="com.chinaitop.depot.business.model.RoleInfo" >
- insert into role_info (role_id, role_name, parent_id,
- remark, del_flag, org_id
- )
- values (#{roleId,jdbcType=INTEGER}, #{roleName,jdbcType=VARCHAR}, #{parentId,jdbcType=INTEGER},
- #{remark,jdbcType=VARCHAR}, #{delFlag,jdbcType=INTEGER}, #{orgId,jdbcType=INTEGER}
- )
- </insert>
- <insert id="insertSelective" parameterType="com.chinaitop.depot.business.model.RoleInfo" >
- insert into role_info
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test="roleId != null" >
- role_id,
- </if>
- <if test="roleName != null" >
- role_name,
- </if>
- <if test="parentId != null" >
- parent_id,
- </if>
- <if test="remark != null" >
- remark,
- </if>
- <if test="delFlag != null" >
- del_flag,
- </if>
- <if test="orgId != null" >
- org_id,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test="roleId != null" >
- #{roleId,jdbcType=INTEGER},
- </if>
- <if test="roleName != null" >
- #{roleName,jdbcType=VARCHAR},
- </if>
- <if test="parentId != null" >
- #{parentId,jdbcType=INTEGER},
- </if>
- <if test="remark != null" >
- #{remark,jdbcType=VARCHAR},
- </if>
- <if test="delFlag != null" >
- #{delFlag,jdbcType=INTEGER},
- </if>
- <if test="orgId != null" >
- #{orgId,jdbcType=INTEGER},
- </if>
- </trim>
- </insert>
- <select id="countByExample" parameterType="com.chinaitop.depot.business.model.RoleInfoExample" resultType="java.lang.Integer" >
- select count(*) from role_info
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </select>
- <update id="updateByExampleSelective" parameterType="map" >
- update role_info
- <set >
- <if test="record.roleId != null" >
- role_id = #{record.roleId,jdbcType=INTEGER},
- </if>
- <if test="record.roleName != null" >
- role_name = #{record.roleName,jdbcType=VARCHAR},
- </if>
- <if test="record.parentId != null" >
- parent_id = #{record.parentId,jdbcType=INTEGER},
- </if>
- <if test="record.remark != null" >
- remark = #{record.remark,jdbcType=VARCHAR},
- </if>
- <if test="record.delFlag != null" >
- del_flag = #{record.delFlag,jdbcType=INTEGER},
- </if>
- <if test="record.orgId != null" >
- org_id = #{record.orgId,jdbcType=INTEGER},
- </if>
- </set>
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByExample" parameterType="map" >
- update role_info
- set role_id = #{record.roleId,jdbcType=INTEGER},
- role_name = #{record.roleName,jdbcType=VARCHAR},
- parent_id = #{record.parentId,jdbcType=INTEGER},
- remark = #{record.remark,jdbcType=VARCHAR},
- del_flag = #{record.delFlag,jdbcType=INTEGER},
- org_id = #{record.orgId,jdbcType=INTEGER}
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByPrimaryKeySelective" parameterType="com.chinaitop.depot.business.model.RoleInfo" >
- update role_info
- <set >
- <if test="roleName != null" >
- role_name = #{roleName,jdbcType=VARCHAR},
- </if>
- <if test="parentId != null" >
- parent_id = #{parentId,jdbcType=INTEGER},
- </if>
- <if test="remark != null" >
- remark = #{remark,jdbcType=VARCHAR},
- </if>
- <if test="delFlag != null" >
- del_flag = #{delFlag,jdbcType=INTEGER},
- </if>
- <if test="orgId != null" >
- org_id = #{orgId,jdbcType=INTEGER},
- </if>
- </set>
- where role_id = #{roleId,jdbcType=INTEGER}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.chinaitop.depot.business.model.RoleInfo" >
- update role_info
- set role_name = #{roleName,jdbcType=VARCHAR},
- parent_id = #{parentId,jdbcType=INTEGER},
- remark = #{remark,jdbcType=VARCHAR},
- del_flag = #{delFlag,jdbcType=INTEGER},
- org_id = #{orgId,jdbcType=INTEGER}
- where role_id = #{roleId,jdbcType=INTEGER}
- </update>
- </mapper>
|