EbCategorysRelationMapper.xml
930 Bytes
<?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.order.erp.mapper.EbCategorysRelationMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.order.erp.domain.model.EbCategorysRelation">
<id column="id" property="id" />
<result column="category_name" property="categoryName" />
<result column="related_category_name" property="relatedCategoryName" />
<result column="category_id" property="categoryId" />
<result column="related_category_id" property="relatedCategoryId" />
<result column="relevance" property="relevance" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
id, category_name, related_category_name, category_id, related_category_id, relevance
</sql>
</mapper>