吴健
2024-11-19 a7cef0a252f9aeebf383e5bc5b208969e57288ff
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
<?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.billion.main.mapper.DaMaterialCollectionMapper">
 
    <resultMap id="BaseResultMap" type="com.billion.main.domain.DaMaterialCollection">
            <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>