summaryrefslogtreecommitdiffstats
path: root/appmarket-persistence/src/main/java/app/market/persistence/xml/authority/AuthorityResourceLinkMapper.xml
diff options
context:
space:
mode:
Diffstat (limited to 'appmarket-persistence/src/main/java/app/market/persistence/xml/authority/AuthorityResourceLinkMapper.xml')
-rw-r--r--appmarket-persistence/src/main/java/app/market/persistence/xml/authority/AuthorityResourceLinkMapper.xml146
1 files changed, 146 insertions, 0 deletions
diff --git a/appmarket-persistence/src/main/java/app/market/persistence/xml/authority/AuthorityResourceLinkMapper.xml b/appmarket-persistence/src/main/java/app/market/persistence/xml/authority/AuthorityResourceLinkMapper.xml
new file mode 100644
index 0000000..bff6c1f
--- /dev/null
+++ b/appmarket-persistence/src/main/java/app/market/persistence/xml/authority/AuthorityResourceLinkMapper.xml
@@ -0,0 +1,146 @@
+<?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="app.market.persistence.mapper.authority.AuthorityResourceLinkMapper" >
+ <resultMap id="BaseResultMap" type="AuthorityResourceLinkKey" >
+ <id column="R_RES_ID" property="resId" jdbcType="CHAR" />
+ <id column="R_AU_ID" property="auId" jdbcType="CHAR" />
+ </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" >
+ R_RES_ID, R_AU_ID
+ </sql>
+ <select id="selectByExample" resultMap="BaseResultMap" parameterType="AuthorityResourceLinkExample" >
+ select
+ <if test="distinct" >
+ distinct
+ </if>
+ 'true' as QUERYID,
+ <include refid="Base_Column_List" />
+ from t_authority_resource_link
+ <if test="_parameter != null" >
+ <include refid="Example_Where_Clause" />
+ </if>
+ <if test="orderByClause != null" >
+ order by ${orderByClause}
+ </if>
+ </select>
+ <delete id="deleteByPrimaryKey" parameterType="AuthorityResourceLinkKey" >
+ delete from t_authority_resource_link
+ where R_RES_ID = #{resId,jdbcType=CHAR}
+ and R_AU_ID = #{auId,jdbcType=CHAR}
+ </delete>
+ <delete id="deleteByExample" parameterType="AuthorityResourceLinkExample" >
+ delete from t_authority_resource_link
+ <if test="_parameter != null" >
+ <include refid="Example_Where_Clause" />
+ </if>
+ </delete>
+ <insert id="insert" parameterType="AuthorityResourceLinkKey" >
+ insert into t_authority_resource_link (R_RES_ID, R_AU_ID)
+ values (#{resId,jdbcType=CHAR}, #{auId,jdbcType=CHAR})
+ </insert>
+ <insert id="insertSelective" parameterType="AuthorityResourceLinkKey" >
+ insert into t_authority_resource_link
+ <trim prefix="(" suffix=")" suffixOverrides="," >
+ <if test="resId != null" >
+ R_RES_ID,
+ </if>
+ <if test="auId != null" >
+ R_AU_ID,
+ </if>
+ </trim>
+ <trim prefix="values (" suffix=")" suffixOverrides="," >
+ <if test="resId != null" >
+ #{resId,jdbcType=CHAR},
+ </if>
+ <if test="auId != null" >
+ #{auId,jdbcType=CHAR},
+ </if>
+ </trim>
+ </insert>
+ <select id="countByExample" parameterType="AuthorityResourceLinkExample" resultType="java.lang.Integer" >
+ select count(*) from t_authority_resource_link
+ <if test="_parameter != null" >
+ <include refid="Example_Where_Clause" />
+ </if>
+ </select>
+ <update id="updateByExampleSelective" parameterType="map" >
+ update t_authority_resource_link
+ <set >
+ <if test="record.resId != null" >
+ R_RES_ID = #{record.resId,jdbcType=CHAR},
+ </if>
+ <if test="record.auId != null" >
+ R_AU_ID = #{record.auId,jdbcType=CHAR},
+ </if>
+ </set>
+ <if test="_parameter != null" >
+ <include refid="Update_By_Example_Where_Clause" />
+ </if>
+ </update>
+ <update id="updateByExample" parameterType="map" >
+ update t_authority_resource_link
+ set R_RES_ID = #{record.resId,jdbcType=CHAR},
+ R_AU_ID = #{record.auId,jdbcType=CHAR}
+ <if test="_parameter != null" >
+ <include refid="Update_By_Example_Where_Clause" />
+ </if>
+ </update>
+</mapper> \ No newline at end of file