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
44
45
46
47
package com.dsh.course.feignClient.order;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsh.course.feignClient.order.model.*;
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 OrderPrivateCarClient {
 
    @PostMapping("/tOrderPrivateCar/selectCount")
    int selectCount(OrderPrivateCarSelectCountReq zcTodayTme);
 
    @PostMapping("/tOrderPrivateCar/getPrivateCarOrderDetailById")
    Map<String, Object> getPrivateCarOrderDetailById(GetPrivateCarOrderDetailById getPrivateCarOrderDetailById);
 
    @PostMapping("/tOrderPrivateCar/getPrivateCarOrderList")
    Page<Map<String, Object>> getPrivateCarOrderList(QueryPrivateCarOrderReq req);
 
    @PostMapping("/tOrderPrivateCar/selectById")
    OrderPrivateCar selectById(Long tOrderPrivateCarId);
 
 
    @PostMapping("/tOrderPrivateCar/updateByIds")
    void updateByIds( UpdateStateReq updateStateReq);
 
 
    @PostMapping("/tOrderPrivateCar/updateById1s")
    void updateById1s(UpdateStateReq updateStateReq);
 
 
    @PostMapping("/tOrderPrivateCar/updateById2s")
    void updateById2s(OrderPrivateCar tOrderPrivateCar);
 
    @PostMapping("/tOrderPrivateCar/getPrivateCarOrderList1")
    List<Map<String, Object>> getPrivateCarOrderList1(Integer companyId);
 
    @PostMapping("/tOrderPrivateCar/tUserLargeAll")
    Map<String, Object> tUserLargeAll(LargerAllReq largerAllReq);
 
    @PostMapping("/tOrderPrivateCar/largeList")
    Page<Map<String, Object>> largeList(LargeListReq largeListReq);
 
}