<?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="mapper.DaParamCollectionMapper">
|
|
<resultMap id="BaseResultMap" type="domain.DaParamCollection">
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
<result property="sfcCode" column="sfc_code" jdbcType="VARCHAR"/>
|
<result property="locationCode" column="location_code" jdbcType="VARCHAR"/>
|
<result property="paramCode" column="param_code" jdbcType="VARCHAR"/>
|
<result property="paramName" column="param_name" jdbcType="VARCHAR"/>
|
<result property="paramValue" column="param_value" jdbcType="VARCHAR"/>
|
<result property="collectTime" column="collect_time" jdbcType="TIMESTAMP"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
id,sfc_code,location_code,
|
param_code,param_name,param_value,
|
collect_time
|
</sql>
|
</mapper>
|