jiaosong
2023-09-11 f417d6b965a16fb197ac8c49b383fbeedd28e23d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.doumee.dao.business.BaseCategoryMapper">
    <resultMap id="BaseCategory" type="com.doumee.dao.business.model.BaseCategory" autoMapping="true">
        <id column="ID" jdbcType="INTEGER" property="id"/>
        <collection property="baseCateParamList"
                    column="{id=categoryId}"
                    ofType="com.doumee.dao.business.model.BaseCateParam"
                    javaType="ArrayList"
                    select="com.doumee.dao.system.getStudent" />
    </resultMap>
 
 
</mapper>