ActivityDetectionMapper.xml 1.45 KB
<?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">

    <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>

    <select id="todayCnt" resultType="integer">
        SELECT
            count(1)
        FROM
            activity_detection t
        WHERE
             t.delete_date IS NULL
            and t.class_id = #{classId}
            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>

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

    <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>

</mapper>