houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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.iailab.module.device.dao.DeviceAccountDao">
    <update id="updateMonitorState">
        update t_device_account set monitor_state = 0
    </update>
    <delete id="delete">
        delete from t_device_account where 1=1
    </delete>
    <select id="getByDeviceId" resultType="com.iailab.module.device.entity.DeviceAccountEntity">
        select * from t_device_account where device_id = #{id}
    </select>
    <select id="getDeviceIdList" resultType="java.lang.String">
        select device_id from t_device_account
    </select>
 
 
</mapper>