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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
| <?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">
| <!-- namespace:该mapper.xml映射文件的 唯一标识 -->
| <mapper namespace="com.hx.phip.dao.mapper.OrderItemMapper">
|
| <!-- 整个实体类修改,表字段=实体类字段-->
| <sql id="Update_Column_All">
| <trim prefixOverrides=",">
| ,orderNo = #{orderNo},type = #{type},goodsNo = #{goodsNo},goodsName = #{goodsName},goodsImage = #{goodsImage},specs = #{specs},payStatus = #{payStatus},refundStatus = #{refundStatus},total = #{total},actualTotal = #{actualTotal},oriPrice = #{oriPrice},curPrice = #{curPrice},single = #{single},discount = #{discount},usedTotal = #{usedTotal},buyNum = #{buyNum},commonId = #{commonId},orderId = #{orderId},isDel = #{isDel},createTime = #{createTime}
| </trim>
| </sql>
|
| <!-- 后续通过 namespace.id-->
| <!--parameterType:输入参数的类型
| resultType:查询返回结果值的类型 ,返回类型 -->
| <insert id="insert" parameterType="com.hx.phiappt.model.order.OrderItem">
| <selectKey keyProperty="id" resultType="String" order="BEFORE">
| select replace(uuid(),'-','') from dual
| </selectKey>
| insert into order_item (id,orderNo,type,goodsNo,goodsName,goodsImage,specs,payStatus,refundStatus,total,actualTotal,oriPrice,curPrice,single,discount,usedTotal,buyNum,commonId,orderId,isDel,createTime) values (#{id},#{orderNo},#{type},#{goodsNo},#{goodsName},#{goodsImage},#{specs},#{payStatus},#{refundStatus},#{total},#{actualTotal},#{oriPrice},#{curPrice},#{single},#{discount},#{usedTotal},#{buyNum},#{commonId},#{orderId},#{isDel},#{createTime})
| </insert>
|
| <select id="selectList" resultType="com.hx.phiappt.model.order.OrderItem" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectListMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectOne" resultType="com.hx.phiappt.model.order.OrderItem" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectOneMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectCount" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
| select
| COUNT(*)
| from order_item
| WHERE ${sqlSentence}
| </select>
|
| <select id="selectCountSql" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectOneByKey" resultType="com.hx.phiappt.model.order.OrderItem" parameterType="java.lang.Object" >
| select
| id,orderNo,type,goodsNo,goodsName,goodsImage,specs,payStatus,refundStatus,total,actualTotal,oriPrice,curPrice,single,discount,usedTotal,buyNum,commonId,orderId,isDel,createTime
| from order_item
| WHERE id = #{value}
| </select>
|
| <select id="selectOneByKeyBlob" resultType="com.hx.phiappt.model.order.OrderItem" parameterType="java.lang.Object" >
| select
| id,orderNo,type,goodsNo,goodsName,goodsImage,specs,payStatus,refundStatus,total,actualTotal,oriPrice,curPrice,single,discount,usedTotal,buyNum,commonId,orderId,isDel,createTime
| from order_item
| WHERE id = #{value}
| </select>
|
| <update id="updateWhere" parameterType="com.hx.mybatisTool.SqlSentence">
| update
| order_item
| SET ${sqlSentence}
| </update>
|
| <update id="updateAll" parameterType="com.hx.phiappt.model.order.OrderItem">
| update order_item
| SET <include refid="Update_Column_All"/>
| WHERE id = #{id}
| </update>
| <update id="updatePayStatus">
| update
| order_item
| SET payStatus=#{payStatus} WHERE id=#{id}
| </update>
|
| <delete id="deleteWhere" parameterType="com.hx.mybatisTool.SqlSentence">
| delete from order_item WHERE ${sqlSentence}
| </delete>
|
| <delete id="deleteById" parameterType="java.lang.Object">
| delete from order_item WHERE id = #{value}
| </delete>
|
| <select id="selectItemList" resultType="com.hx.phiappt.model.order.OrderItem">
| select * from order_item where isDel=0 and orderId=#{id}
| </select>
| </mapper>
|
|