1098226878@qq.com
2022-01-10 093b73aadb022895a02dbbcd64b87613e19b547b
java110-db/src/main/resources/mapper/acct/CouponUserV1ServiceDaoImplMapper.xml
@@ -5,147 +5,142 @@
<mapper namespace="couponUserV1ServiceDaoImpl">
    <!-- 保存用户优惠券信息 add by wuxw 2018-07-03 -->
    <insert id="saveCouponUserInfo" parameterType="Map">
        insert into coupon_user(
coupon_name,actual_price,validity_day,pool_id,tel,state,coupon_id,user_name,user_id,PRIMARY
) values (
#{couponName},#{actualPrice},#{validityDay},#{poolId},#{tel},#{state},#{couponId},#{userName},#{userId},#{primary}
)
        coupon_name,actual_price,validity_day,pool_id,tel,state,coupon_id,user_name,user_id
        ) values (
        #{couponName},#{actualPrice},#{validityDay},#{poolId},#{tel},#{state},#{couponId},#{userName},#{userId}
        )
    </insert>
    <!-- 查询用户优惠券信息 add by wuxw 2018-07-03 -->
    <select id="getCouponUserInfo" parameterType="Map" resultType="Map">
        select  t.coupon_name,t.coupon_name couponName,t.actual_price,t.actual_price actualPrice,t.validity_day,t.validity_day validityDay,t.pool_id,t.pool_id poolId,t.tel,t.status_cd,t.status_cd statusCd,t.state,t.coupon_id,t.coupon_id couponId,t.user_name,t.user_name userName,t.user_id,t.user_id userId,t.PRIMARY,t.PRIMARY primary
from coupon_user t
where 1 =1
<if test="couponName !=null and couponName != ''">
   and t.coupon_name= #{couponName}
</if>
<if test="actualPrice !=null and actualPrice != ''">
   and t.actual_price= #{actualPrice}
</if>
<if test="validityDay !=null and validityDay != ''">
   and t.validity_day= #{validityDay}
</if>
<if test="poolId !=null and poolId != ''">
   and t.pool_id= #{poolId}
</if>
<if test="tel !=null and tel != ''">
   and t.tel= #{tel}
</if>
<if test="statusCd !=null and statusCd != ''">
   and t.status_cd= #{statusCd}
</if>
<if test="state !=null and state != ''">
   and t.state= #{state}
</if>
<if test="couponId !=null and couponId != ''">
   and t.coupon_id= #{couponId}
</if>
<if test="userName !=null and userName != ''">
   and t.user_name= #{userName}
</if>
<if test="userId !=null and userId != ''">
   and t.user_id= #{userId}
</if>
<if test="primary !=null and primary != ''">
   and t.PRIMARY= #{primary}
</if>
order by t.create_time desc
<if test="page != -1 and page != null ">
   limit #{page}, #{row}
</if>
        select t.coupon_name,t.coupon_name couponName,t.actual_price,t.actual_price
        actualPrice,t.validity_day,t.validity_day validityDay,t.pool_id,t.pool_id poolId,t.tel,t.status_cd,t.status_cd
        statusCd,t.state,t.coupon_id,t.coupon_id couponId,t.user_name,t.user_name userName,t.user_id,t.user_id
        userId,t.create_time createTime
        from coupon_user t
        where 1 =1
        <if test="couponName !=null and couponName != ''">
            and t.coupon_name= #{couponName}
        </if>
        <if test="actualPrice !=null and actualPrice != ''">
            and t.actual_price= #{actualPrice}
        </if>
        <if test="validityDay !=null and validityDay != ''">
            and t.validity_day= #{validityDay}
        </if>
        <if test="poolId !=null and poolId != ''">
            and t.pool_id= #{poolId}
        </if>
        <if test="tel !=null and tel != ''">
            and t.tel= #{tel}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
        </if>
        <if test="state !=null and state != ''">
            and t.state= #{state}
        </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="userName !=null and userName != ''">
            and t.user_name= #{userName}
        </if>
        <if test="userId !=null and userId != ''">
            and t.user_id= #{userId}
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
        </if>
    </select>
    <!-- 修改用户优惠券信息 add by wuxw 2018-07-03 -->
    <update id="updateCouponUserInfo" parameterType="Map">
        update  coupon_user t set t.status_cd = #{statusCd}
<if test="newBId != null and newBId != ''">
,t.b_id = #{newBId}
</if>
<if test="couponName !=null and couponName != ''">
, t.coupon_name= #{couponName}
</if>
<if test="actualPrice !=null and actualPrice != ''">
, t.actual_price= #{actualPrice}
</if>
<if test="validityDay !=null and validityDay != ''">
, t.validity_day= #{validityDay}
</if>
<if test="poolId !=null and poolId != ''">
, t.pool_id= #{poolId}
</if>
<if test="tel !=null and tel != ''">
, t.tel= #{tel}
</if>
<if test="state !=null and state != ''">
, t.state= #{state}
</if>
<if test="userName !=null and userName != ''">
, t.user_name= #{userName}
</if>
<if test="userId !=null and userId != ''">
, t.user_id= #{userId}
</if>
<if test="primary !=null and primary != ''">
, t.PRIMARY= #{primary}
</if>
 where 1=1 <if test="couponId !=null and couponId != ''">
and t.coupon_id= #{couponId}
</if>
        update coupon_user t set t.status_cd = #{statusCd}
        <if test="newBId != null and newBId != ''">
            ,t.b_id = #{newBId}
        </if>
        <if test="couponName !=null and couponName != ''">
            , t.coupon_name= #{couponName}
        </if>
        <if test="actualPrice !=null and actualPrice != ''">
            , t.actual_price= #{actualPrice}
        </if>
        <if test="validityDay !=null and validityDay != ''">
            , t.validity_day= #{validityDay}
        </if>
        <if test="poolId !=null and poolId != ''">
            , t.pool_id= #{poolId}
        </if>
        <if test="tel !=null and tel != ''">
            , t.tel= #{tel}
        </if>
        <if test="state !=null and state != ''">
            , t.state= #{state}
        </if>
        <if test="userName !=null and userName != ''">
            , t.user_name= #{userName}
        </if>
        <if test="userId !=null and userId != ''">
            , t.user_id= #{userId}
        </if>
        where 1=1
        <if test="couponId !=null and couponId != ''">
            and t.coupon_id= #{couponId}
        </if>
    </update>
    <!-- 查询用户优惠券数量 add by wuxw 2018-07-03 -->
     <select id="queryCouponUsersCount" parameterType="Map" resultType="Map">
        select  count(1) count
from coupon_user t
where 1 =1
<if test="couponName !=null and couponName != ''">
   and t.coupon_name= #{couponName}
</if>
<if test="actualPrice !=null and actualPrice != ''">
   and t.actual_price= #{actualPrice}
</if>
<if test="validityDay !=null and validityDay != ''">
   and t.validity_day= #{validityDay}
</if>
<if test="poolId !=null and poolId != ''">
   and t.pool_id= #{poolId}
</if>
<if test="tel !=null and tel != ''">
   and t.tel= #{tel}
</if>
<if test="statusCd !=null and statusCd != ''">
   and t.status_cd= #{statusCd}
</if>
<if test="state !=null and state != ''">
   and t.state= #{state}
</if>
<if test="couponId !=null and couponId != ''">
   and t.coupon_id= #{couponId}
</if>
<if test="userName !=null and userName != ''">
   and t.user_name= #{userName}
</if>
<if test="userId !=null and userId != ''">
   and t.user_id= #{userId}
</if>
<if test="primary !=null and primary != ''">
   and t.PRIMARY= #{primary}
</if>
    <select id="queryCouponUsersCount" parameterType="Map" resultType="Map">
        select count(1) count
        from coupon_user t
        where 1 =1
        <if test="couponName !=null and couponName != ''">
            and t.coupon_name= #{couponName}
        </if>
        <if test="actualPrice !=null and actualPrice != ''">
            and t.actual_price= #{actualPrice}
        </if>
        <if test="validityDay !=null and validityDay != ''">
            and t.validity_day= #{validityDay}
        </if>
        <if test="poolId !=null and poolId != ''">
            and t.pool_id= #{poolId}
        </if>
        <if test="tel !=null and tel != ''">
            and t.tel= #{tel}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
        </if>
        <if test="state !=null and state != ''">
            and t.state= #{state}
        </if>
        <if test="couponId !=null and couponId != ''">
            and t.coupon_id= #{couponId}
        </if>
        <if test="userName !=null and userName != ''">
            and t.user_name= #{userName}
        </if>
        <if test="userId !=null and userId != ''">
            and t.user_id= #{userId}
        </if>
     </select>
    </select>
</mapper>