| <?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.BaseCateParamMapper"> | 
|   | 
|     <resultMap id="BaseCateParam" type="com.doumee.dao.business.model.BaseCateParam"> | 
|         <id column="ID" jdbcType="INTEGER" property="id" /> | 
|         <result column="CREATOR" jdbcType="INTEGER" property="creator" /> | 
|         <result column="CREATE_DATE" jdbcType="VARCHAR" property="createDate" /> | 
|         <result column="EDITOR" jdbcType="VARCHAR" property="editor" /> | 
|         <result column="EDIT_DATE" jdbcType="VARCHAR" property="editDate"/> | 
|         <result column="ISDELETED" jdbcType="TIMESTAMP" property="isdeleted"/> | 
|         <result column="NAME" jdbcType="TIMESTAMP" property="name"/> | 
|         <result column="REMARK" jdbcType="TIMESTAMP" property="remark"/> | 
|         <result column="STATUS" jdbcType="TIMESTAMP" property="status"/> | 
|         <result column="SORTNUM" jdbcType="TIMESTAMP" property="sortnum"/> | 
|         <result column="CATEGORY_ID" jdbcType="TIMESTAMP" property="categoryId"/> | 
|     </resultMap> | 
|     <select id="getBaseCateParamList" resultType="com.doumee.dao.business.model.BaseCateParam"> | 
|         select * from base_cate_param where CATEGORY_ID = #{categoryId} | 
|     </select> | 
| </mapper> |