Fancy
2024-09-10 939d5f3d5e17e5ca0bfeec9c23c7c926b4cb1684
pms-parent/pms-web-other/src/main/java/com/dy/pmsOther/screen/ScreenReportCtrl.java
@@ -1,5 +1,6 @@
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;
@@ -44,7 +45,13 @@
        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);
    }
}