From d388e2788b7ef088d7cd40f901b0acdcec460bc3 Mon Sep 17 00:00:00 2001 From: wzy <wzy19931122ai@163.com> Date: Thu, 01 Apr 2021 00:19:23 +0800 Subject: [PATCH] modify --- 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