guoshilong
2023-03-29 309629313429fc64a538f00aab9edb08d853aa36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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="cn.gistack.app.jcsb.mapper.DeviceReportMapper">
 
 
 
    <select id="getDetail" resultType="cn.gistack.app.jcsb.vo.DeviceReportVO">
        SELECT * FROM JCSB_DEVICE_REPORT
    </select>
    <select id="selectDeviceReportPage" resultType="cn.gistack.app.jcsb.vo.DeviceReportVO">
        SELECT id,description,device_code,device_type,rainfall,water_level,flow,water_storage,specific_flood_limit,temporal_rainfall,record_time
        FROM JCSB_DEVICE_REPORT WHERE is_deleted = 0
    </select>
</mapper>