Pu Zhibing
2025-04-04 3d4eeb82dd61f8951616dece2425e870116bc23d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
}