fix
Helius
2021-08-12 4705f9b4084d9ccddb601569b223f0fb41778a94
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}