package com.ruoyi.dataInterchange.api.feignClient;
|
|
import com.ruoyi.common.core.constant.ServiceNameConstants;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.dataInterchange.api.factory.UPExgMsgTakeEwayBillAckClientFallbackFactory;
|
import com.ruoyi.dataInterchange.api.vo.UPExgMsgTakeEwayBillAckVo;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/4/2 11:43
|
*/
|
@FeignClient(contextId = "UPExgMsgTakeEwayBillAckClient", value = ServiceNameConstants.DATA_INTERCHANGE_SERVICE, fallbackFactory = UPExgMsgTakeEwayBillAckClientFallbackFactory.class)
|
public interface UPExgMsgTakeEwayBillAckClient {
|
|
|
/**
|
* 获取大于给定日期的数据
|
*
|
* @param createTime
|
* @return
|
*/
|
@PostMapping("/exgMsgTakeEwayBillAck/findByCreateTimeAfter")
|
R<List<UPExgMsgTakeEwayBillAckVo>> findByCreateTimeAfter(@RequestParam("createTime") Long createTime);
|
}
|