| | |
| | | package com.dy.pmsOther.screen; |
| | | |
| | | import cn.hutool.json.JSONObject; |
| | | import com.dy.common.aop.SsoPowerAop; |
| | | import com.dy.common.webUtil.BaseResponse; |
| | | import com.dy.common.webUtil.BaseResponseUtils; |
| | |
| | | List<StaDeviceProductionLog> log = sv.queryDeviceLog(startTime,endTime); |
| | | return BaseResponseUtils.buildSuccess(log); |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 任务看板 查询在产任务看板 |
| | | * */ |
| | | @GetMapping(path="queryPlanList") |
| | | @Log("查询在产任务看板") |
| | | public BaseResponse<List<JSONObject>> queryPlanList(){ |
| | | List<JSONObject> list = sv.queryPlanList(); |
| | | return BaseResponseUtils.buildSuccess(list); |
| | | } |
| | | } |