Przeglądaj źródła

//merchant bug

release_toaliyun_real
xhxu 3 lat temu
rodzic
commit
46d1469fe4
3 zmienionych plików z 10 dodań i 1 usunięć
  1. +2
    -0
      mallinkService/src/main/java/com/iformall/mapper/WxProfitSharingReceiverApplyMapper.java
  2. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxProfitSharingReceiverApplyServiceImpl.java
  3. +7
    -0
      mallinkService/src/main/resources/mapper/WxProfitSharingReceiverApplyMapper.xml

+ 2
- 0
mallinkService/src/main/java/com/iformall/mapper/WxProfitSharingReceiverApplyMapper.java Wyświetl plik

@@ -22,4 +22,6 @@ public interface WxProfitSharingReceiverApplyMapper extends CommonMapper<WxProfi
List<WxMerchantReceiverApplyVo> findListVo(WxMerchantReceiverApplyVo receiver);

int updateDelById(@Param("id") Long id);

WxProfitSharingReceiverApply findOne(WxProfitSharingReceiverApply receiverApply);
}

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxProfitSharingReceiverApplyServiceImpl.java Wyświetl plik

@@ -77,7 +77,7 @@ public class WxProfitSharingReceiverApplyServiceImpl implements WxProfitSharingR
receiverApply.setMerchantId(merchantId);
receiverApply.setPlat(plat.getCode());
// receiverApply.setStatus(EnumSharingReceiverApplyStatus.PROFIT_RECEIVER_APPLY_STATUS_VALID.getCode());
return wxProfitSharingReceiverApplyMapper.selectOne(new QueryWrapper<>(receiverApply));
return wxProfitSharingReceiverApplyMapper.findOne(receiverApply);
}

@Override


+ 7
- 0
mallinkService/src/main/resources/mapper/WxProfitSharingReceiverApplyMapper.xml Wyświetl plik

@@ -142,6 +142,13 @@
<include refid="dynamicWhereConditions"/>
</select>

<select id="findOne" parameterType="com.iformall.domain.po.WxProfitSharingReceiverApply" resultMap="BaseResultMap">
select
<include refid="allColumns"/>
from wx_profit_sharing_receiver_apply
<include refid="dynamicWhereConditions"/>
</select>

<select id="findResultStateById" parameterType="Long" resultMap="BaseResultMap">
select
`id`,`tenant_id`,`parent_tenant_id`,`merchant_id`,`plat`,`out_request_no`,


Ładowanie…
Anuluj
Zapisz