From a0cd34acf14a149cc3c08b41ca4dde6938a29ecc Mon Sep 17 00:00:00 2001
From: wzy <wzy19931122ai@163.com>
Date: Wed, 07 Jul 2021 22:31:34 +0800
Subject: [PATCH] modify
---
zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml b/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml
index 9e9eed3..bcab5c6 100644
--- a/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml
+++ b/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml
@@ -63,7 +63,11 @@
beatuyName,
pay_time,
company_id,
- orderType
+ orderType,
+ is_has_refund,
+ create_time,
+ update_time,
+ create_by
)
VALUES (
#{id},
@@ -86,7 +90,11 @@
#{beatuyName},
#{payTime},
#{companyId},
- #{orderType}
+ #{orderType},
+ #{isHasRefund},
+ #{createTime},
+ #{updateTime},
+ #{createBy}
)
</insert>
@@ -143,10 +151,12 @@
<if test="cashPay != null and cashPay !='' ">
cash_Pay = #{cashPay},
</if>
-
<if test="payTime != null ">
pay_time = #{payTime},
</if>
+ <if test="isHasRefund != null ">
+ is_has_refund = #{isHasRefund},
+ </if>
</set>
WHERE id=#{id}
--
Gitblit v1.9.1