3 changed files with 68 additions and 2 deletions
@ -0,0 +1,65 @@
|
||||
package com.logpm.oldproject.feign; |
||||
|
||||
import com.logpm.oldproject.dto.AdvanceDTO; |
||||
import com.logpm.oldproject.entity.AdvanceEntity; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springframework.cloud.openfeign.FallbackFactory; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Slf4j |
||||
@Component |
||||
public class IAdvanceClientFallbackFactory implements FallbackFactory<IAdvanceClient> { |
||||
@Override |
||||
public IAdvanceClient create(Throwable cause) { |
||||
|
||||
return new IAdvanceClient(){ |
||||
|
||||
@Override |
||||
public Integer addAdvanceClient(AdvanceEntity advanceEntity) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public List<AdvanceEntity> getQueryData(AdvanceDTO advanceDTO) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public AdvanceEntity getQueryDataOne(String orderSelfNum) { |
||||
|
||||
log.error(">>>>>>>>>>>>>> 订单号查询失败 {}",orderSelfNum); |
||||
log.error(">>>>>>>>>>>>>> 异常信息 {}",cause.getMessage()); |
||||
|
||||
|
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public List<AdvanceEntity> getEntityByMctsTruck(String orderSelfNum, String mctsTruck) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public AdvanceEntity fingById(Integer advanceId) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public List<AdvanceEntity> findAdvanceEntityByLogiBillNoAndOrderCode(String logiBillNo, String orderCode) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public List<AdvanceEntity> getAdvanceList(String orderSelfNum) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public List<AdvanceEntity> findListByAdvanceIds(List<Integer> advanceIds) { |
||||
return null; |
||||
} |
||||
}; |
||||
} |
||||
} |
Loading…
Reference in new issue