|
@@ -5,93 +5,96 @@
|
|
|
<mapper namespace="couponPropertyPoolConfigV1ServiceDaoImpl">
|
|
<mapper namespace="couponPropertyPoolConfigV1ServiceDaoImpl">
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
<!-- 保存优惠券配置信息 add by wuxw 2018-07-03 -->
|
|
<!-- 保存优惠券配置信息 add by wuxw 2018-07-03 -->
|
|
|
<insert id="saveCouponPropertyPoolConfigInfo" parameterType="Map">
|
|
<insert id="saveCouponPropertyPoolConfigInfo" parameterType="Map">
|
|
|
insert into coupon_property_pool_config(
|
|
insert into coupon_property_pool_config(
|
|
|
-config_id,coupon_id,column_value,column_key
|
|
|
|
|
-) values (
|
|
|
|
|
-#{configId},#{couponId},#{columnValue},#{columnKey}
|
|
|
|
|
-)
|
|
|
|
|
|
|
+ config_id,coupon_id,column_value,column_key
|
|
|
|
|
+ ) values (
|
|
|
|
|
+ #{configId},#{couponId},#{columnValue},#{columnKey}
|
|
|
|
|
+ )
|
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
<!-- 查询优惠券配置信息 add by wuxw 2018-07-03 -->
|
|
<!-- 查询优惠券配置信息 add by wuxw 2018-07-03 -->
|
|
|
<select id="getCouponPropertyPoolConfigInfo" parameterType="Map" resultType="Map">
|
|
<select id="getCouponPropertyPoolConfigInfo" parameterType="Map" resultType="Map">
|
|
|
- select t.config_id,t.config_id configId,t.status_cd,t.status_cd statusCd,t.coupon_id,t.coupon_id couponId,t.column_value,t.column_value columnValue,t.column_key,t.column_key columnKey
|
|
|
|
|
-from coupon_property_pool_config t
|
|
|
|
|
-where 1 =1
|
|
|
|
|
-<if test="configId !=null and configId != ''">
|
|
|
|
|
- and t.config_id= #{configId}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="statusCd !=null and statusCd != ''">
|
|
|
|
|
- and t.status_cd= #{statusCd}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="couponId !=null and couponId != ''">
|
|
|
|
|
- and t.coupon_id= #{couponId}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="columnValue !=null and columnValue != ''">
|
|
|
|
|
- and t.column_value= #{columnValue}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="columnKey !=null and columnKey != ''">
|
|
|
|
|
- and t.column_key= #{columnKey}
|
|
|
|
|
-</if>
|
|
|
|
|
-order by t.create_time desc
|
|
|
|
|
-<if test="page != -1 and page != null ">
|
|
|
|
|
- limit #{page}, #{row}
|
|
|
|
|
-</if>
|
|
|
|
|
|
|
+ select t.config_id,t.config_id configId,t.status_cd,t.status_cd statusCd,t.coupon_id,t.coupon_id
|
|
|
|
|
+ couponId,t.column_value,t.column_value columnValue,t.column_key,t.column_key columnKey
|
|
|
|
|
+ from coupon_property_pool_config t
|
|
|
|
|
+ where 1 =1
|
|
|
|
|
+ <if test="configId !=null and configId != ''">
|
|
|
|
|
+ and t.config_id= #{configId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="statusCd !=null and statusCd != ''">
|
|
|
|
|
+ and t.status_cd= #{statusCd}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="couponId !=null and couponId != ''">
|
|
|
|
|
+ and t.coupon_id= #{couponId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="couponIds !=null">
|
|
|
|
|
+ and t.coupon_id in
|
|
|
|
|
+ <foreach collection="couponIds" item="item" open="(" close=")" separator=",">
|
|
|
|
|
+ #{item}
|
|
|
|
|
+ </foreach>
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="columnValue !=null and columnValue != ''">
|
|
|
|
|
+ and t.column_value= #{columnValue}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="columnKey !=null and columnKey != ''">
|
|
|
|
|
+ and t.column_key= #{columnKey}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ order by t.create_time desc
|
|
|
|
|
+ <if test="page != -1 and page != null ">
|
|
|
|
|
+ limit #{page}, #{row}
|
|
|
|
|
+ </if>
|
|
|
|
|
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
<!-- 修改优惠券配置信息 add by wuxw 2018-07-03 -->
|
|
<!-- 修改优惠券配置信息 add by wuxw 2018-07-03 -->
|
|
|
<update id="updateCouponPropertyPoolConfigInfo" parameterType="Map">
|
|
<update id="updateCouponPropertyPoolConfigInfo" parameterType="Map">
|
|
|
- update coupon_property_pool_config t set t.status_cd = #{statusCd}
|
|
|
|
|
-<if test="newBId != null and newBId != ''">
|
|
|
|
|
-,t.b_id = #{newBId}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="couponId !=null and couponId != ''">
|
|
|
|
|
-, t.coupon_id= #{couponId}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="columnValue !=null and columnValue != ''">
|
|
|
|
|
-, t.column_value= #{columnValue}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="columnKey !=null and columnKey != ''">
|
|
|
|
|
-, t.column_key= #{columnKey}
|
|
|
|
|
-</if>
|
|
|
|
|
- where 1=1 <if test="configId !=null and configId != ''">
|
|
|
|
|
-and t.config_id= #{configId}
|
|
|
|
|
-</if>
|
|
|
|
|
|
|
+ update coupon_property_pool_config t set t.status_cd = #{statusCd}
|
|
|
|
|
+ <if test="newBId != null and newBId != ''">
|
|
|
|
|
+ ,t.b_id = #{newBId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+
|
|
|
|
|
+ <if test="columnValue !=null and columnValue != ''">
|
|
|
|
|
+ , t.column_value= #{columnValue}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="columnKey !=null and columnKey != ''">
|
|
|
|
|
+ , t.column_key= #{columnKey}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ where 1=1
|
|
|
|
|
+ <if test="configId !=null and configId != ''">
|
|
|
|
|
+ and t.config_id= #{configId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="couponId !=null and couponId != ''">
|
|
|
|
|
+ and t.coupon_id= #{couponId}
|
|
|
|
|
+ </if>
|
|
|
|
|
|
|
|
</update>
|
|
</update>
|
|
|
|
|
|
|
|
<!-- 查询优惠券配置数量 add by wuxw 2018-07-03 -->
|
|
<!-- 查询优惠券配置数量 add by wuxw 2018-07-03 -->
|
|
|
- <select id="queryCouponPropertyPoolConfigsCount" parameterType="Map" resultType="Map">
|
|
|
|
|
- select count(1) count
|
|
|
|
|
-from coupon_property_pool_config t
|
|
|
|
|
-where 1 =1
|
|
|
|
|
-<if test="configId !=null and configId != ''">
|
|
|
|
|
- and t.config_id= #{configId}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="statusCd !=null and statusCd != ''">
|
|
|
|
|
- and t.status_cd= #{statusCd}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="couponId !=null and couponId != ''">
|
|
|
|
|
- and t.coupon_id= #{couponId}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="columnValue !=null and columnValue != ''">
|
|
|
|
|
- and t.column_value= #{columnValue}
|
|
|
|
|
-</if>
|
|
|
|
|
-<if test="columnKey !=null and columnKey != ''">
|
|
|
|
|
- and t.column_key= #{columnKey}
|
|
|
|
|
-</if>
|
|
|
|
|
|
|
+ <select id="queryCouponPropertyPoolConfigsCount" parameterType="Map" resultType="Map">
|
|
|
|
|
+ select count(1) count
|
|
|
|
|
+ from coupon_property_pool_config t
|
|
|
|
|
+ where 1 =1
|
|
|
|
|
+ <if test="configId !=null and configId != ''">
|
|
|
|
|
+ and t.config_id= #{configId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="statusCd !=null and statusCd != ''">
|
|
|
|
|
+ and t.status_cd= #{statusCd}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="couponId !=null and couponId != ''">
|
|
|
|
|
+ and t.coupon_id= #{couponId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="columnValue !=null and columnValue != ''">
|
|
|
|
|
+ and t.column_value= #{columnValue}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="columnKey !=null and columnKey != ''">
|
|
|
|
|
+ and t.column_key= #{columnKey}
|
|
|
|
|
+ </if>
|
|
|
|
|
|
|
|
|
|
|
|
|
- </select>
|
|
|
|
|
|
|
+ </select>
|
|
|
|
|
|
|
|
</mapper>
|
|
</mapper>
|