| | |
| | | import com.mes.order.entity.Orderdetail; |
| | | import com.mes.order.entity.Orders; |
| | | import com.mes.order.service.OrdersService; |
| | | import com.mes.pp.entity.OrderChange; |
| | | import com.mes.utils.Result; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | |
| | | log.info("显示订单详情信息:{}", glass); |
| | | return Result.build(200, "", glass); |
| | | } |
| | | |
| | | @ApiOperation("订单变更") |
| | | @PostMapping("/orderChange") //显示工程选择信息 |
| | | public Result orderChange(@RequestBody List<OrderChange> orderChanges) { |
| | | return Result.build(200, "传入参数"+orderChanges, ordersService.orderChange(orderChanges)); |
| | | } |
| | | } |
| | | |