123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?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.slodon.b2b2c.dao.read.system.TplPcMallDataReadMapper">
- <resultMap id="resultMap" type="com.slodon.b2b2c.system.pojo.TplPcMallData">
- <id column="data_id" property="dataId" />
- <result column="tpl_pc_id" property="tplPcId" />
- <result column="tpl_pc_name" property="tplPcName" />
- <result column="tpl_pc_type" property="tplPcType" />
- <result column="tpl_pc_type_name" property="tplPcTypeName" />
- <result column="site" property="site" />
- <result column="name" property="name" />
- <result column="create_time" property="createTime" />
- <result column="create_user_id" property="createUserId" />
- <result column="update_time" property="updateTime" />
- <result column="update_user_id" property="updateUserId" />
- <result column="sort" property="sort" />
- <result column="is_enable" property="isEnable" />
- <result column="store_id" property="storeId" />
- <result column="html" property="html" />
- <result column="json" property="json" />
- </resultMap>
- <!--按照主键值进行操作-->
- <sql id="pkWhere">
- WHERE `data_id` = #{primaryKey}
- </sql>
- <!--操作条件-->
- <sql id="whereCondition">
- <if test="example != null">
- <trim prefix="WHERE" prefixOverrides="AND|OR">
- <if test="example.dataIdNotEquals != null">
- AND `data_id` != #{example.dataIdNotEquals}
- </if>
- <if test="example.dataId != null">
- AND `data_id` = #{example.dataId}
- </if>
- <if test="example.dataIdIn != null">
- AND `data_id` in (${example.dataIdIn})
- </if>
- <if test="example.tplPcId != null">
- AND `tpl_pc_id` = #{example.tplPcId}
- </if>
- <if test="example.tplPcName != null">
- AND `tpl_pc_name` = #{example.tplPcName}
- </if>
- <if test="example.tplPcNameLike != null">
- AND `tpl_pc_name` like concat('%',#{example.tplPcNameLike},'%')
- </if>
- <if test="example.tplPcType != null">
- AND `tpl_pc_type` = #{example.tplPcType}
- </if>
- <if test="example.tplPcTypeNotEquals != null">
- AND `tpl_pc_type` != 'main_banner'
- </if>
- <if test="example.tplPcTypeName != null">
- AND `tpl_pc_type_name` = #{example.tplPcTypeName}
- </if>
- <if test="example.tplPcTypeNameLike != null">
- AND `tpl_pc_type_name` like concat('%',#{example.tplPcTypeNameLike},'%')
- </if>
- <if test="example.site != null">
- AND `site` = #{example.site}
- </if>
- <if test="example.name != null">
- AND `name` = #{example.name}
- </if>
- <if test="example.nameLike != null">
- AND `name` like concat('%',#{example.nameLike},'%')
- </if>
- <if test="example.createTimeAfter != null">
- AND `create_time` <![CDATA[ >= ]]> #{example.createTimeAfter}
- </if>
- <if test="example.createTimeBefore != null">
- AND `create_time` <![CDATA[ <= ]]> #{example.createTimeBefore}
- </if>
- <if test="example.createUserId != null">
- AND `create_user_id` = #{example.createUserId}
- </if>
- <if test="example.updateTimeAfter != null">
- AND `update_time` <![CDATA[ >= ]]> #{example.updateTimeAfter}
- </if>
- <if test="example.updateTimeBefore != null">
- AND `update_time` <![CDATA[ <= ]]> #{example.updateTimeBefore}
- </if>
- <if test="example.updateUserId != null">
- AND `update_user_id` = #{example.updateUserId}
- </if>
- <if test="example.sort != null">
- AND `sort` = #{example.sort}
- </if>
- <if test="example.isEnable != null">
- AND `is_enable` = #{example.isEnable}
- </if>
- <if test="example.storeId != null">
- AND `store_id` = #{example.storeId}
- </if>
- <if test="example.html != null">
- AND `html` = #{example.html}
- </if>
- <if test="example.json != null">
- AND `json` = #{example.json}
- </if>
- </trim>
- </if>
- </sql>
- <!--排序条件-->
- <sql id="orderBy">
- ORDER BY `data_id` DESC
- </sql>
- <sql id="orderByOther">
- order by ${example.orderBy}
- </sql>
- <!--分组条件-->
- <sql id="groupBy">
- group by ${example.groupBy}
- </sql>
- <!--分页条件-->
- <sql id="limit">
- <if test="size != null and size > 0">
- limit #{startRow},#{size}
- </if>
- </sql>
- <!--查询符合条件的记录数-->
- <select id="countByExample" parameterType="com.slodon.b2b2c.system.example.TplPcMallDataExample" resultType="java.lang.Integer">
- SELECT
- COUNT(*)
- FROM `sys_tpl_pc_mall_data`
- <include refid="whereCondition" />
- </select>
- <!--根据主键查询记录-->
- <select id="getByPrimaryKey" resultMap="resultMap">
- SELECT
- *
- FROM `sys_tpl_pc_mall_data`
- <include refid="pkWhere" />
- </select>
- <!--查询符合条件的记录(所有字段)-->
- <select id="listByExample" resultMap="resultMap">
- SELECT
- *
- FROM `sys_tpl_pc_mall_data`
- <include refid="whereCondition" />
- <if test="example.groupBy != null">
- <include refid="groupBy" />
- </if>
- <choose>
- <when test="example.orderBy != null">
- <include refid="orderByOther" />
- </when>
- <otherwise>
- <include refid="orderBy" />
- </otherwise>
- </choose>
- </select>
- <!--分页查询符合条件的记录(所有字段)-->
- <select id="listPageByExample" resultMap="resultMap">
- SELECT
- *
- FROM `sys_tpl_pc_mall_data`
- <include refid="whereCondition" />
- <if test="example.groupBy != null">
- <include refid="groupBy" />
- </if>
- <choose>
- <when test="example.orderBy != null">
- <include refid="orderByOther" />
- </when>
- <otherwise>
- <include refid="orderBy" />
- </otherwise>
- </choose>
- <include refid="limit" />
- </select>
- <!--查询符合条件的记录(指定字段)-->
- <select id="listFieldsByExample" resultMap="resultMap">
- SELECT
- ${fields}
- FROM `sys_tpl_pc_mall_data`
- <include refid="whereCondition" />
- <if test="example.groupBy != null">
- <include refid="groupBy" />
- </if>
- <choose>
- <when test="example.orderBy != null">
- <include refid="orderByOther" />
- </when>
- <otherwise>
- <include refid="orderBy" />
- </otherwise>
- </choose>
- </select>
- <!--分页查询符合条件的记录(指定字段)-->
- <select id="listFieldsPageByExample" resultMap="resultMap">
- SELECT
- ${fields}
- FROM `sys_tpl_pc_mall_data`
- <include refid="whereCondition" />
- <if test="example.groupBy != null">
- <include refid="groupBy" />
- </if>
- <choose>
- <when test="example.orderBy != null">
- <include refid="orderByOther" />
- </when>
- <otherwise>
- <include refid="orderBy" />
- </otherwise>
- </choose>
- <include refid="limit" />
- </select>
- </mapper>
|