| | |
| | | package com.java110.core.smo.order; |
| | | |
| | | import com.java110.core.feign.FeignConfiguration; |
| | | import com.java110.dto.order.BusinessDto; |
| | | import com.java110.dto.order.OrderDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | /*@FeignClient(name = "order-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/orderApi")*/ |
| | | @FeignClient(name = "order-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/orderApi") |
| | | public interface IOrderInnerServiceSMO { |
| | | |
| | | /** |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryOwenrOrders", method = RequestMethod.POST) |
| | | List<OrderDto> queryOwenrOrders(@RequestBody OrderDto orderDto); |
| | | |
| | | @RequestMapping(value = "/updateBusinessStatusCd", method = RequestMethod.POST) |
| | | int updateBusinessStatusCd(@RequestBody OrderDto orderDto); |
| | | |
| | | |
| | | /** |
| | | * <p>查询上级组织信息</p> |
| | | * |
| | | * @param orderDto 数据对象分享 |
| | | * @return OrderDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/queryMachineOrders", method = RequestMethod.POST) |
| | | List<OrderDto> queryMachineOrders(@RequestBody OrderDto orderDto); |
| | | |
| | | /** |
| | | * <p>查询上级组织信息</p> |
| | | * |
| | | * @param orderDto 数据对象分享 |
| | | * @return OrderDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/queryApplicationKeyOrders", method = RequestMethod.POST) |
| | | List<OrderDto> queryApplicationKeyOrders(@RequestBody OrderDto orderDto); |
| | | |
| | | /** |
| | | * 查询 同订单 订单项 |
| | | * @param businessDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/querySameOrderBusiness", method = RequestMethod.POST) |
| | | List<BusinessDto> querySameOrderBusiness(@RequestBody BusinessDto businessDto); |
| | | } |