13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?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.ruoyi.fuzhou.mapper.ReceiveElectricityValueFinalMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.fuzhou.domain.ReceiveElectricityValueFinal">
        <id column="ID" property="id" />
        <result column="TEMP" property="temp" />
        <result column="VOLTAGE_A" property="voltageA" />
        <result column="VOLTAGE_B" property="voltageB" />
        <result column="VOLTAGE_C" property="voltageC" />
        <result column="VOLTAGE_AB" property="voltageAb" />
        <result column="VOLTAGE_BC" property="voltageBc" />
        <result column="VOLTAGE_CA" property="voltageCa" />
        <result column="CURRENT_A" property="currentA" />
        <result column="CURRENT_B" property="currentB" />
        <result column="CURRENT_C" property="currentC" />
        <result column="POWER_A" property="powerA" />
        <result column="POWER_B" property="powerB" />
        <result column="POWER_C" property="powerC" />
        <result column="POWER" property="power" />
        <result column="TEMP_A" property="tempA" />
        <result column="TEMP_B" property="tempB" />
        <result column="TEMP_C" property="tempC" />
        <result column="WARN_STATUS" property="warnStatus" />
        <result column="CREATE_TIME" property="createTime" />
        <result column="DEVICE_NAME" property="deviceName" />
        <result column="ZHENG_POWER" property="zhengPower" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        ID, TEMP, VOLTAGE_A, VOLTAGE_B, VOLTAGE_C, VOLTAGE_AB, VOLTAGE_BC, VOLTAGE_CA, CURRENT_A, CURRENT_B, CURRENT_C, POWER_A, POWER_B, POWER_C, POWER, TEMP_A, TEMP_B, TEMP_C, WARN_STATUS, CREATE_TIME, DEVICE_NAME, ZHENG_POWER
    </sql>
 
</mapper>