From 4c75849f7c579147e20a3ce9e07d43375ceb4c2a Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 22 Apr 2021 14:47:49 +0800
Subject: [PATCH] 20210422 签到

---
 zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml |   10 +++++++---
 1 files changed, 7 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..7bdfec4 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,8 @@
 		beatuyName,
 		pay_time,
 		company_id,
-		orderType
+		orderType,
+        is_has_refund
 		)
 		VALUES (
 		#{id},
@@ -86,7 +87,8 @@
 		#{beatuyName},
 		#{payTime},
 		#{companyId},
-		#{orderType}
+		#{orderType},
+		#{isHasRefund}
 		)
 	</insert>
 
@@ -143,10 +145,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