<?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>
|