<?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.sandu.ximon.dao.mapper.LightEnergyDataMapper">
|
|
<resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.LightEnergyData">
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
<result property="taskId" column="task_id" jdbcType="BIGINT"/>
|
<result property="ytdTime" column="ytd_time" jdbcType="VARCHAR"/>
|
<result property="energy" column="energy" jdbcType="DOUBLE"/>
|
<result property="energySaving" column="energy_saving" jdbcType="DOUBLE"/>
|
<result property="userId" column="user_id" jdbcType="BIGINT"/>
|
<result property="clientId" column="client_id" jdbcType="BIGINT"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
id,task_id,ytd_time,
|
energy,energy_saving,user_id,
|
client_id
|
</sql>
|
</mapper>
|