zhaowenxuan
3 天以前 6c7c71ad85ab1e5fb4a3eae9e31799b2f35006fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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.ltkj.hosp.mapper.TjReportSpecialProjectMapper">
 
    <resultMap id="BaseResultMap" type="com.ltkj.hosp.domain.TjReportSpecialProject">
            <id property="id" column="id" jdbcType="BIGINT"/>
            <result property="proId" column="pro_id" jdbcType="BIGINT"/>
            <result property="templateKey" column="template_key" jdbcType="TINYINT"/>
            <result property="params" column="params" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,pro_id,template_key,
        params
    </sql>
</mapper>