From c18037dc5de7f67175c2cf80cd04761d198739b5 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 12 Apr 2021 19:48:50 +0800 Subject: [PATCH] Merge branch 'score_shop' of http://120.27.238.55:7000/r/beauty-erp into score_shop --- 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