智慧保安后台管理项目备份
tangzy
2021-11-30 874043e11695651e3bc753edeaeab4d788530e20
src/main/java/org/springblade/modules/location/mapper/LocusMapper.xml
@@ -10,6 +10,40 @@
            sys_locus
        WHERE
            1=1
        <if test="locus.type!=null">
            and type = #{locus.type}
        </if>
        <if test="locus.workerId!=null">
            and worker_id = #{locus.workerId}
        </if>
        <if test="locus.beginTime!=null">
            and record_time &gt;= #{locus.beginTime}
        </if>
        <if test="locus.endTime!=null">
            and record_time &lt;=#{locus.endTime}
        </if>
    </select>
    <select id="selectLocusPages" resultType="java.util.HashMap">
        SELECT
        *
        FROM
        sys_locus
        WHERE
        1=1
        <if test="locus.type!=null">
            and type = #{locus.type}
        </if>
        <if test="locus.workerId!=null">
            and worker_id = #{locus.workerId}
        </if>
        <if test="locus.beginTime!=null">
            and record_time &gt;= #{locus.beginTime}
        </if>
        <if test="locus.endTime!=null">
            and record_time &lt;=#{locus.endTime}
        </if>
    </select>
    <!--轨迹详情信息-->