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
package com.dsh.course.feignClient.order;
 
import com.dsh.course.feignClient.order.model.PrivateCarReassignReq;
import com.dsh.course.feignClient.order.model.QueryCanSelectPrivateCarDriverReq;
import com.dsh.course.feignClient.order.model.QueryCanSelectSmallDriverReq;
import com.dsh.guns.modular.system.model.TReassign;
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", path = "/tReassign")
public interface ReassignClient {
    @PostMapping("queryReassignById")
    TReassign queryReassignById(Long reassignId);
 
    @PostMapping("getPrivateCarReassignOrderList")
    List<Map<String, Object>> getPrivateCarReassignOrderList(PrivateCarReassignReq req);
 
    @PostMapping("getCanSelectPrivateCarDriverList")
    List<Map<String, Object>> getCanSelectPrivateCarDriverList( QueryCanSelectPrivateCarDriverReq req);
 
    @PostMapping("getCanSelectSmallDriverList")
    List<Map<String, Object>> getCanSelectSmallDriverList(QueryCanSelectSmallDriverReq req);
 
    @PostMapping("updateById")
    void updateById( TReassign tReassign);
}