Blame view

ActivityDetectionMapper.xml 1.45 KB
涂亚平 committed
1 2 3 4
<?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.subsidy.mapper.ActivityDetectionMapper">

涂亚平 committed
5 6 7 8 9 10 11 12 13 14 15 16 17
    <select id="getCheckHistory" resultType="com.subsidy.vo.activity.GetCheckHistoryVO">
        SELECT
            t.id,
            t.`status`,
            t.create_date
        FROM
            activity_detection t
        WHERE
            t.delete_date IS NULL
            AND t.class_id = #{classId}
            AND t.member_id = #{memberId}
    </select>

18 19 20 21 22 23
    <select id="todayCnt" resultType="integer">
        SELECT
            count(1)
        FROM
            activity_detection t
        WHERE
涂亚平 committed
24 25
             t.delete_date IS NULL
            and t.class_id = #{classId}
26 27 28 29 30
            AND t.member_id = #{memberId}
            AND t.check_type = #{checkType}
            AND t.`status` = #{status}
            AND DATE_FORMAT( t.create_date, '%Y-%m-%d' ) = DATE_FORMAT(NOW(),'%Y-%m-%d')
    </select>
31 32 33 34 35 36

    <update id="updateTime" parameterType="com.subsidy.model.ActivityDetectionDO">
        update activity_detection t
        set t.order_no = #{orderNo} where t.id = #{id}
    </update>

37 38 39 40 41
    <update id="updateImageCheckCreateDate" parameterType="com.subsidy.model.ActivityDetectionDO">
         update activity_detection t
        set t.status = #{status},t.create_date = #{createDate},t.update_date = #{updateDate} where t.id = #{id}
    </update>

涂亚平 committed
42
</mapper>