puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.dsh.course.feignClient.order;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsh.course.feignClient.order.model.*;
import com.dsh.guns.modular.system.model.TOrderLogistics;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
import java.util.List;
import java.util.Map;
 
@FeignClient(value = "mb-cloud-orderServer")
public interface OrderLogisticsClient {
    @PostMapping("/orderLogistics/queryOrderLogisticsInfo")
    OrderLogisticsInfoRes queryOrderLogisticsInfo(Long id);
 
    @PostMapping("/orderLogistics/updateOrderLogistics")
    void updateOrderLogistics(OrderLogisticsInfoReq req);
 
    @PostMapping("/orderLogistics/getLogisticsOrderList")
    Page<Map<String, Object>> getLogisticsOrderList(QueryLoginsicsListReq req);
 
 
    @PostMapping("/orderLogistics/getLogisticsOrderDetailById")
    Map<String, Object> getLogisticsOrderDetailById(Long tOrderLogisticsId);
 
    @PostMapping("/orderLogistics/queryByOrderId")
    TOrderLogistics queryByOrderId(Long orderId);
 
    @PostMapping("/orderLogistics/selectCount")
    int selectCount(OrderLogisticsSelectCountReq tcxTodayTme);
 
    @PostMapping("/orderLogistics/getAllOrderNum")
    Map<String,Object> getAllOrderNum(Integer companyId);
 
    @PostMapping("/orderLogistics/getAllTradeMoney")
    Double getAllTradeMoney(GetAllTradeMoneyReq req);
 
 
    @PostMapping("/orderLogistics/getLogisticsOrderList1")
    List<Map<String, Object>> getLogisticsOrderList1(Integer companyId);
 
}