2021与蓝度共同重构项目,服务端
liuhaonan
2022-11-04 e55c8b0a92eb9715edd90c31dfd4de51a47b588b
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.sandu.ximon.dao.mapper.C3mChargingChargeMapper">
 
    <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.C3mChargingCharge">
            <id property="c3Id" column="c3_id" jdbcType="INTEGER"/>
            <result property="hour" column="hour" jdbcType="INTEGER"/>
            <result property="min" column="min" jdbcType="INTEGER"/>
            <result property="charge" column="charge" jdbcType="DOUBLE"/>
            <result property="timestamp" column="timestamp" jdbcType="BIGINT"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        c3_id,hour,min,
        charge,timestamp
    </sql>
</mapper>