| | |
| | | import com.dy.common.webUtil.BaseResponseUtils; |
| | | import com.dy.common.webUtil.QueryResultVo; |
| | | import com.dy.pmsGlobal.aop.Log; |
| | | import com.dy.pmsGlobal.pojoPr.PrOrder; |
| | | import com.dy.pmsGlobal.pojoPr.PrProductionProcess; |
| | | import com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog; |
| | | import jakarta.validation.Valid; |
| | |
| | | |
| | | @GetMapping(path="queryOrderList") |
| | | @Log("查询订单看板") |
| | | public BaseResponse<List<JSONObject>> queryOrderList(){ |
| | | List<JSONObject> list = sv.queryOrderList(); |
| | | public BaseResponse<List<PrOrder>> queryOrderList(){ |
| | | List<PrOrder> list = sv.queryOrderList(); |
| | | return BaseResponseUtils.buildSuccess(list); |
| | | } |
| | | |