java110
2021-04-01 3b0ddfa0b1c3490fbbf421a84e0431a60fb58387
java110-db/src/main/resources/mapper/user/ActivitiesBeautifulStaffServiceDaoImplMapper.xml
@@ -4,7 +4,6 @@
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="activitiesBeautifulStaffServiceDaoImpl">
    <!-- 保存活动规则信息 add by wuxw 2018-07-03 -->
    <insert id="saveActivitiesBeautifulStaffInfo" parameterType="Map">
        insert into activities_beautiful_staff(
@@ -14,7 +13,6 @@
        )
    </insert>
    <!-- 查询活动规则信息 add by wuxw 2018-07-03 -->
    <select id="getActivitiesBeautifulStaffInfo" parameterType="Map" resultType="Map">
        select t.be_id,t.be_id beId,t.work_content,t.work_content workContent,t.activities_num,t.activities_num
@@ -22,8 +20,8 @@
        storeId,t.staff_id,t.staff_id staffId,uu.name staffName,ar.rule_name ruleName,t.create_time createTime
        from activities_beautiful_staff t
        left join u_user uu on t.staff_id = uu.user_id and uu.status_cd = '0'
        left join activities_rule ar on t.rule_id = ar.rule_id and ar.status_cd = '0' and ar.obj_type = '3307' and ar.obj_id = t.store_id
        left join activities_rule ar on t.rule_id = ar.rule_id and ar.status_cd = '0' and ar.obj_type = '3307' and
        ar.obj_id = t.store_id
        where 1 =1
        <if test="beId !=null and beId != ''">
            and t.be_id= #{beId}
@@ -53,9 +51,7 @@
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
        </if>
    </select>
    <!-- 修改活动规则信息 add by wuxw 2018-07-03 -->
    <update id="updateActivitiesBeautifulStaffInfo" parameterType="Map">
@@ -85,7 +81,6 @@
        <if test="beId !=null and beId != ''">
            and t.be_id= #{beId}
        </if>
    </update>
    <!-- 查询活动规则数量 add by wuxw 2018-07-03 -->
@@ -117,8 +112,5 @@
        <if test="staffId !=null and staffId != ''">
            and t.staff_id= #{staffId}
        </if>
    </select>
</mapper>