YYC
2023-06-19 2db1a7b1019297a3ba9f098f44488d1ee07addc7
igds-api-phone/src/main/resources/mapper/Phone35Mapper.xml
@@ -116,8 +116,6 @@
        SELECT EP_INC_ AS epSum,
        EQ_INC_ AS eqSum,
        ES_INC_ AS esSum,
        EP_ AS ep,
        EQ_ AS eq,
        ES_ AS es,
        DEPOT_ID_ AS depotId,
        UPDATE_TIME_ AS updateTime
@@ -134,4 +132,32 @@
        </where>
        ORDER BY UPDATE_TIME_ desc
    </select>
    <!-- 电子巡更记录-->
    <select id="getPatrol" resultType="com.ld.igds.phone35.dto.DtoPatrol">
        SELECT ID_ AS id,
        USER_NAME_ AS userName,
        LONGITUDE_ As longitude,
        LATITUDE_ AS latitude,
        IMG_NAME_ AS base64Img,
        CREATE_TIME_ AS createTime
        FROM D_SEC_PATROL_RECORD
        <where>
            <if test="param.companyId != null and companyId != ''">AND COMPANY_ID_ = #{param.companyId}</if>
            <if test="param.deptId != null and param.deptId != ''">AND DEPT_ID_ = #{param.deptId}</if>
            <if test="param.startTime != null and param.endTime != null">AND CREATE_TIME_ between #{param.startTime}
                and #{param.endTime}
            </if>
        </where>
    </select>
    <!--    监控设备列表-->
    <select id="getCamera" resultType="com.ld.igds.phone35.dto.DtoVideo">
        SELECT ID_        AS id,
               TYPE_      AS type,
               PLAY_TYPE_ AS playType,
               NAME_      AS name
        FROM D_SEC_CAMERA
        WHERE COMPANY_ID_ = #{param.companyId}
          AND DEPT_ID_ = #{param.deptId}
    </select>
</mapper>