ProductMapper.xml 1.03 KB
<?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.jeesite.modules.java.dao.ProductDao">


    <sql id="product_Column">
        id
        ,contactUs
        ,img
        ,deliveryTime
        ,`name`
        ,`describe`
    </sql>
    <sql id="category_Column">
        categoryId
        ,price
        ,categoryName
    </sql>

    <select id="selectProduct" resultType="com.jeesite.modules.java.entity.Product">
        select
        <include refid="product_Column" />
        from product
    </select>

    <select id="getCategory" resultType="com.jeesite.modules.java.entity.Category">
        select
        <include refid="category_Column" />
        from category
        where
        categoryId = #{categoryId}
    </select>
    <select id="getCategories" resultType="com.jeesite.modules.java.entity.Category">
        select
        <include refid="category_Column" />
        from category
    </select>
</mapper>