Helius
2021-03-09 8fe37f0f7af3667b60e0f29a1ce8188c08c35bb1
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}