| | |
| | | import com.dy.common.webUtil.BaseResponseUtils; |
| | | import com.dy.common.webUtil.QueryResultVo; |
| | | import com.dy.pmsGlobal.aop.Log; |
| | | import com.dy.pmsGlobal.pojoPlt.PltProduct; |
| | | import com.dy.pmsGlobal.pojoPr.PrAssemblyPlan; |
| | | import com.dy.pmsGlobal.pojoPr.PrOrder; |
| | | import com.dy.pmsProduct.order.QueryVo; |
| | |
| | | return BaseResponseUtils.buildSuccess(list); |
| | | } |
| | | |
| | | /** |
| | | * 查询所有订单 |
| | | * @return |
| | | */ |
| | | @GetMapping(path="all") |
| | | @SsoPowerAop(power = "10300000") |
| | | @Log("查询所有产品") |
| | | public BaseResponse<List<PrOrder>> all(){ |
| | | QueryVo vo = new QueryVo(); |
| | | return BaseResponseUtils.buildSuccess(sv.selectAll(vo)); |
| | | } |
| | | |
| | | @PostMapping(path="updateStatus") |
| | | @SsoPowerAop(power = "10200001") |
| | | @Log("更新任务计划状态") |