ProductMapper.xml
1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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>