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);
|
|
}
|