ProductcategoryrelationMapper.xml 681 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.ProductcategoryrelationMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.order.erp.domain.model.Productcategoryrelation">
        <result column="productId" property="productId" />
        <result column="categoryId" property="categoryId" />
        <result column="modifyDate" property="modifyDate" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        productId, categoryId, modifyDate
    </sql>

</mapper>