123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <?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.seller.StoreApplyReadMapper">
- <resultMap id="resultMap" type="com.slodon.b2b2c.seller.pojo.StoreApply">
- <id column="apply_id" property="applyId" />
- <result column="vendor_id" property="vendorId" />
- <result column="vendor_name" property="vendorName" />
- <result column="store_id" property="storeId" />
- <result column="store_name" property="storeName" />
- <result column="store_type" property="storeType" />
- <result column="state" property="state" />
- <result column="apply_year" property="applyYear" />
- <result column="store_grade_id" property="storeGradeId" />
- <result column="store_category_id" property="storeCategoryId" />
- <result column="submit_time" property="submitTime" />
- <result column="refuse_reason" property="refuseReason" />
- <result column="audit_info" property="auditInfo" />
- <result column="pay_sn" property="paySn" />
- <result column="pay_amount" property="payAmount" />
- <result column="callback_time" property="callbackTime" />
- <result column="trade_sn" property="tradeSn" />
- <result column="payment_name" property="paymentName" />
- <result column="payment_code" property="paymentCode" />
- <result column="apply_time" property="applyTime" />
- </resultMap>
- <!--按照主键值进行操作-->
- <sql id="pkWhere">
- WHERE `apply_id` = #{primaryKey}
- </sql>
- <!--操作条件-->
- <sql id="whereCondition">
- <if test="example != null">
- <trim prefix="WHERE" prefixOverrides="AND|OR">
- <if test="example.applyIdNotEquals != null">
- AND `apply_id` != #{example.applyIdNotEquals}
- </if>
- <if test="example.applyIdIn != null">
- AND `apply_id` in (${example.applyIdIn})
- </if>
- <if test="example.vendorId != null">
- AND `vendor_id` = #{example.vendorId}
- </if>
- <if test="example.vendorIdNotEquals != null">
- AND `vendor_id` != #{example.vendorIdNotEquals}
- </if>
- <if test="example.vendorName != null">
- AND `vendor_name` = #{example.vendorName}
- </if>
- <if test="example.vendorNameLike != null">
- AND `vendor_name` like concat('%',#{example.vendorNameLike},'%')
- </if>
- <if test="example.storeId != null">
- AND `store_id` = #{example.storeId}
- </if>
- <if test="example.storeName != null">
- AND `store_name` = #{example.storeName}
- </if>
- <if test="example.storeNameLike != null">
- AND `store_name` like concat('%',#{example.storeNameLike},'%')
- </if>
- <if test="example.storeType != null">
- AND `store_type` = #{example.storeType}
- </if>
- <if test="example.state != null">
- AND `state` = #{example.state}
- </if>
- <if test="example.stateNotEquals != null">
- AND `state` != #{example.stateNotEquals}
- </if>
- <if test="example.applyYear != null">
- AND `apply_year` = #{example.applyYear}
- </if>
- <if test="example.storeGradeId != null">
- AND `store_grade_id` = #{example.storeGradeId}
- </if>
- <if test="example.storeCategoryId != null">
- AND `store_category_id` = #{example.storeCategoryId}
- </if>
- <if test="example.submitTimeAfter != null">
- AND `submit_time` <![CDATA[ >= ]]> #{example.submitTimeAfter}
- </if>
- <if test="example.submitTimeBefore != null">
- AND `submit_time` <![CDATA[ <= ]]> #{example.submitTimeBefore}
- </if>
- <if test="example.refuseReason != null">
- AND `refuse_reason` = #{example.refuseReason}
- </if>
- <if test="example.auditInfo != null">
- AND `audit_info` = #{example.auditInfo}
- </if>
- <if test="example.paySn != null">
- AND `pay_sn` = #{example.paySn}
- </if>
- <if test="example.paySnLike != null">
- AND `pay_sn` like concat('%',#{example.paySnLike},'%')
- </if>
- <if test="example.payAmount != null">
- AND `pay_amount` = #{example.payAmount}
- </if>
- <if test="example.callbackTimeAfter != null">
- AND `callback_time` <![CDATA[ >= ]]> #{example.callbackTimeAfter}
- </if>
- <if test="example.callbackTimeBefore != null">
- AND `callback_time` <![CDATA[ <= ]]> #{example.callbackTimeBefore}
- </if>
- <if test="example.tradeSn != null">
- AND `trade_sn` = #{example.tradeSn}
- </if>
- <if test="example.tradeSnLike != null">
- AND `trade_sn` like concat('%',#{example.tradeSnLike},'%')
- </if>
- <if test="example.paymentName != null">
- AND `payment_name` = #{example.paymentName}
- </if>
- <if test="example.paymentNameLike != null">
- AND `payment_name` like concat('%',#{example.paymentNameLike},'%')
- </if>
- <if test="example.paymentCode != null">
- AND `payment_code` = #{example.paymentCode}
- </if>
- <if test="example.applyTime != null">
- AND `apply_time` = #{example.applyTime}
- </if>
- </trim>
- </if>
- </sql>
- <!--排序条件-->
- <sql id="orderBy">
- ORDER BY `apply_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.seller.example.StoreApplyExample" resultType="java.lang.Integer">
- SELECT
- COUNT(*)
- FROM `store_apply`
- <include refid="whereCondition" />
- </select>
- <!--根据主键查询记录-->
- <select id="getByPrimaryKey" resultMap="resultMap">
- SELECT
- *
- FROM `store_apply`
- <include refid="pkWhere" />
- </select>
- <!--查询符合条件的记录(所有字段)-->
- <select id="listByExample" resultMap="resultMap">
- SELECT
- *
- FROM `store_apply`
- <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 `store_apply`
- <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 `store_apply`
- <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 `store_apply`
- <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="getVendorMobileByStoreApply" parameterType="java.util.List" resultType="java.lang.String">
- select t2.vendor_mobile from store_apply t1, vendor t2 where t1.vendor_id = t2.vendor_id
- <if test="ids != null">
- and
- <foreach collection="ids" open="(" close=")" separator="or" item="id">
- t1.apply_id = #{id}
- </foreach>
- </if>
- </select>
- <select id="countCnByExample" resultType="java.lang.Integer">
- select COUNT(store_apply.apply_id)
- from store_apply
- left join store_name on store_apply.store_id = store_name.store_id
- left join store_site_info on store_name.store_id = store_site_info.store_id
- <where>
- <if test="example.storeType != null">
- and store_apply.store_type = #{example.storeType}
- </if>
- <if test="example.vendorNameLike != null">
- and store_apply.vendor_name like concat('%', #{example.vendorNameLike},'%')
- </if>
- <if test="example.state != null">
- AND store_apply.state = #{example.state}
- </if>
- <if test="example.stateNotEquals != null">
- AND store_apply.state != #{example.stateNotEquals}
- </if>
- <if test="example.storeNameLike != null">
- and store_name.store_name like concat('%',#{example.storeNameLike},'%')
- </if>
- <if test="example.storeGradeId != null">
- and store.site_info.store_grade_id = #{example.storeGradeId}
- </if>
- </where>
- </select>
- <select id="listCnPageByExample" resultType="com.slodon.b2b2c.seller.pojo.StoreApply">
- select
- store_apply.apply_id as applyId,
- store_apply.vendor_name as vendorName,
- store_apply.state as state,
- store_apply.refuse_reason as refuseReason,
- store_apply.audit_info as auditInfo,
- store_apply.submit_time as submitTime,
- store_apply.apply_time as applyTime,
- store_name.store_name as storeName,
- store_site_info.store_grade_id as storeGradeId,
- store_apply.vendor_id as vendorId
- from store_apply
- left join store_name on store_apply.store_id = store_name.store_id
- left join store_site_info on store_name.store_id = store_site_info.store_id
- <where>
- <if test="example.storeType != null">
- and store_apply.store_type = #{example.storeType}
- </if>
- <if test="example.vendorNameLike != null">
- and store_apply.vendor_name like concat('%', #{example.vendorNameLike},'%')
- </if>
- <if test="example.state != null">
- AND store_apply.state = #{example.state}
- </if>
- <if test="example.stateNotEquals != null">
- AND store_apply.state != #{example.stateNotEquals}
- </if>
- <if test="example.storeNameLike != null">
- and store_name.store_name like concat('%',#{example.storeNameLike},'%')
- </if>
- <if test="example.storeGradeId != null">
- and store.site_info.store_grade_id = #{example.storeGradeId}
- </if>
- </where>
- order by store_apply.submit_time desc
- <include refid="limit"></include>
- </select>
- </mapper>
|