Browse Source

小程序添加赞助接口

zhangbin 1 year ago
parent
commit
b08d1983b5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      nbjk-service/src/main/resources/mapper/wx/WxOrderMapper.xml

+ 2 - 2
nbjk-service/src/main/resources/mapper/wx/WxOrderMapper.xml

@@ -30,7 +30,7 @@
         <result property="orderStatus" column="order_status"/>
         <result property="phoneType" column="phone_type"/>
         <result property="foreType" column="fore_type"/>
-        <result property="profitSharing" column="profit_sharing"/>
+        <result property="is_sharing" column="is_sharing"/>
         <result property="createTime" column="create_time"/>
         <result property="updateTime" column="update_time"/>
     </resultMap>
@@ -69,7 +69,7 @@
             <if test="currency != null  and currency != ''">and currency = #{currency}</if>
             <if test="payerCurrency != null  and payerCurrency != ''">and payer_currency = #{payerCurrency}</if>
             <if test="orderStatus != null  and orderStatus != ''">and order_status = #{orderStatus}</if>
-            <if test="profitSharing != null">and profit_sharing = #{profitSharing}</if>
+            <if test="is_sharing != null">and is_sharing = #{is_sharing}</if>
             <if test="phoneType != null">and phone_type = #{phoneType}</if>
             <if test="foreType != null">and fore_type = #{foreType}</if>
         </where>