提交 | 用户 | age
|
d4d93e
|
1 |
<?xml version="1.0" encoding="UTF-8" ?> |
Z |
2 |
<!DOCTYPE mapper |
|
3 |
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
4 |
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
5 |
<!-- namespace:该mapper.xml映射文件的 唯一标识 --> |
|
6 |
<mapper namespace="com.hx.phip.dao.mapper.RefundRecordItemMethodMapper"> |
|
7 |
|
|
8 |
<!-- 整个实体类修改,表字段=实体类字段--> |
|
9 |
<sql id="Update_Column_All"> |
|
10 |
<trim prefixOverrides=","> |
2a45d4
|
11 |
,numberNo = #{numberNo},name = #{name},paymentMethodId = #{paymentMethodId},isMoneyPay = #{isMoneyPay},isExecute = #{isExecute},isPay = #{isPay},refundNumberNo = #{refundNumberNo},refundName = #{refundName},refundMethodId = #{refundMethodId},isMoneyPayRefund = #{isMoneyPayRefund},isExecuteRefund = #{isExecuteRefund},actualTotal = #{actualTotal},realRefundTotal = #{realRefundTotal},commonType = #{commonType},commonId = #{commonId},orderId = #{orderId},refundRecordItemId = #{refundRecordItemId},refundRecordId = #{refundRecordId},isDel = #{isDel},createTime = #{createTime},editTime = #{editTime} |
d4d93e
|
12 |
</trim> |
Z |
13 |
</sql> |
|
14 |
|
|
15 |
<!-- 后续通过 namespace.id--> |
|
16 |
<!--parameterType:输入参数的类型 |
|
17 |
resultType:查询返回结果值的类型 ,返回类型 --> |
|
18 |
<insert id="insert" parameterType="com.hx.phiappt.model.refund.RefundRecordItemMethod"> |
|
19 |
<selectKey keyProperty="id" resultType="String" order="BEFORE"> |
|
20 |
select replace(uuid(),'-','') from dual |
|
21 |
</selectKey> |
2a45d4
|
22 |
insert into refund_record_item_method (id,numberNo,name,paymentMethodId,isMoneyPay,isExecute,isPay,refundNumberNo,refundName,refundMethodId,isMoneyPayRefund,isExecuteRefund,actualTotal,realRefundTotal,commonType,commonId,orderId,refundRecordItemId,refundRecordId,isDel,createTime,editTime) values (#{id},#{numberNo},#{name},#{paymentMethodId},#{isMoneyPay},#{isExecute},#{isPay},#{refundNumberNo},#{refundName},#{refundMethodId},#{isMoneyPayRefund},#{isExecuteRefund},#{actualTotal},#{realRefundTotal},#{commonType},#{commonId},#{orderId},#{refundRecordItemId},#{refundRecordId},#{isDel},#{createTime},#{editTime}) |
d4d93e
|
23 |
</insert> |
2a45d4
|
24 |
|
C |
25 |
<insert id="insertById" parameterType="com.hx.phiappt.model.refund.RefundRecordItemMethod"> |
|
26 |
insert into refund_record_item_method (id,numberNo,name,paymentMethodId,isMoneyPay,isExecute,isPay,refundNumberNo,refundName,refundMethodId,isMoneyPayRefund,isExecuteRefund,actualTotal,realRefundTotal,commonType,commonId,orderId,refundRecordItemId,refundRecordId,isDel,createTime,editTime) values (#{id},#{numberNo},#{name},#{paymentMethodId},#{isMoneyPay},#{isExecute},#{isPay},#{refundNumberNo},#{refundName},#{refundMethodId},#{isMoneyPayRefund},#{isExecuteRefund},#{actualTotal},#{realRefundTotal},#{commonType},#{commonId},#{orderId},#{refundRecordItemId},#{refundRecordId},#{isDel},#{createTime},#{editTime}) |
|
27 |
</insert> |
d4d93e
|
28 |
|
Z |
29 |
<select id="selectList" resultType="com.hx.phiappt.model.refund.RefundRecordItemMethod" parameterType="com.hx.mybatisTool.SqlSentence" > |
|
30 |
${sqlSentence} |
|
31 |
</select> |
|
32 |
|
|
33 |
<select id="selectListMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" > |
|
34 |
${sqlSentence} |
|
35 |
</select> |
|
36 |
|
|
37 |
<select id="selectOne" resultType="com.hx.phiappt.model.refund.RefundRecordItemMethod" parameterType="com.hx.mybatisTool.SqlSentence" > |
|
38 |
${sqlSentence} |
|
39 |
</select> |
|
40 |
|
|
41 |
<select id="selectOneMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" > |
|
42 |
${sqlSentence} |
|
43 |
</select> |
|
44 |
|
|
45 |
<select id="selectCount" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" > |
|
46 |
select |
|
47 |
COUNT(*) |
|
48 |
from refund_record_item_method |
|
49 |
WHERE ${sqlSentence} |
|
50 |
</select> |
|
51 |
|
|
52 |
<select id="selectCountSql" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" > |
|
53 |
${sqlSentence} |
|
54 |
</select> |
|
55 |
|
|
56 |
<select id="selectOneByKey" resultType="com.hx.phiappt.model.refund.RefundRecordItemMethod" parameterType="java.lang.Object" > |
|
57 |
select |
2a45d4
|
58 |
id,numberNo,name,paymentMethodId,isMoneyPay,isExecute,isPay,refundNumberNo,refundName,refundMethodId,isMoneyPayRefund,isExecuteRefund,actualTotal,realRefundTotal,commonType,commonId,orderId,refundRecordItemId,refundRecordId,isDel,createTime,editTime |
d4d93e
|
59 |
from refund_record_item_method |
Z |
60 |
WHERE id = #{value} |
|
61 |
</select> |
|
62 |
|
|
63 |
<select id="selectOneByKeyBlob" resultType="com.hx.phiappt.model.refund.RefundRecordItemMethod" parameterType="java.lang.Object" > |
|
64 |
select |
2a45d4
|
65 |
id,numberNo,name,paymentMethodId,isMoneyPay,isExecute,isPay,refundNumberNo,refundName,refundMethodId,isMoneyPayRefund,isExecuteRefund,actualTotal,realRefundTotal,commonType,commonId,orderId,refundRecordItemId,refundRecordId,isDel,createTime,editTime |
d4d93e
|
66 |
from refund_record_item_method |
Z |
67 |
WHERE id = #{value} |
|
68 |
</select> |
|
69 |
|
|
70 |
<update id="updateWhere" parameterType="com.hx.mybatisTool.SqlSentence"> |
|
71 |
update |
|
72 |
refund_record_item_method |
|
73 |
SET ${sqlSentence} |
|
74 |
</update> |
|
75 |
|
|
76 |
<update id="updateAll" parameterType="com.hx.phiappt.model.refund.RefundRecordItemMethod"> |
|
77 |
update refund_record_item_method |
|
78 |
SET <include refid="Update_Column_All"/> |
|
79 |
WHERE id = #{id} |
|
80 |
</update> |
|
81 |
|
|
82 |
<delete id="deleteWhere" parameterType="com.hx.mybatisTool.SqlSentence"> |
|
83 |
delete from refund_record_item_method WHERE ${sqlSentence} |
|
84 |
</delete> |
|
85 |
|
|
86 |
<delete id="deleteById" parameterType="java.lang.Object"> |
|
87 |
delete from refund_record_item_method WHERE id = #{value} |
|
88 |
</delete> |
|
89 |
|
|
90 |
</mapper> |