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