Просмотр исходного кода

//merchant bug

release_toaliyun_real
xhxu 3 лет назад
Родитель
Сommit
46d1469fe4
3 измененных файлов: 10 добавлений и 1 удалений
  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 Просмотреть файл

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


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

WxProfitSharingReceiverApply findOne(WxProfitSharingReceiverApply receiverApply);
} }

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxProfitSharingReceiverApplyServiceImpl.java Просмотреть файл

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


@Override @Override


+ 7
- 0
mallinkService/src/main/resources/mapper/WxProfitSharingReceiverApplyMapper.xml Просмотреть файл

@@ -142,6 +142,13 @@
<include refid="dynamicWhereConditions"/> <include refid="dynamicWhereConditions"/>
</select> </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="findResultStateById" parameterType="Long" resultMap="BaseResultMap">
select select
`id`,`tenant_id`,`parent_tenant_id`,`merchant_id`,`plat`,`out_request_no`, `id`,`tenant_id`,`parent_tenant_id`,`merchant_id`,`plat`,`out_request_no`,


Загрузка…
Отмена
Сохранить