|
@@ -44,11 +44,13 @@ import com.factory.web.entity.pm.req.OnsiteItemReq;
|
|
|
import com.factory.web.entity.pm.req.OnsiteWorkshopReq;
|
|
|
import com.factory.web.entity.pm.req.PmPlanPauseFlagReq;
|
|
|
import com.factory.web.entity.pm.req.SearchApprovalUserReq;
|
|
|
+import com.factory.web.entity.pm.req.SearchPmItemNoGoListReq;
|
|
|
import com.factory.web.entity.pm.req.SearchPmItemResultListReq;
|
|
|
import com.factory.web.entity.pm.req.SearchPmPlanCheckListReq;
|
|
|
import com.factory.web.entity.pm.req.SearchPmPlanListForPadReq;
|
|
|
import com.factory.web.entity.pm.req.SearchPmPlanListReq;
|
|
|
import com.factory.web.entity.pm.req.SearchPmPlanReq;
|
|
|
+import com.factory.web.entity.pm.req.SearchPmWorkshopNoGoListReq;
|
|
|
import com.factory.web.entity.pm.req.SearchTaskReq;
|
|
|
import com.factory.web.entity.pm.req.SearchWorkshopReq;
|
|
|
import com.factory.web.entity.pm.res.ApprovalUserRes;
|
|
@@ -732,7 +734,7 @@ public class PreventMistakeServiceImpl extends ServiceImpl<PreventMistakeMapper,
|
|
|
* @return 不放行任务对应的工作站
|
|
|
*/
|
|
|
@Override
|
|
|
- public ResponseBean<List<PmWorkshopNoGoListRes>> getPmWorkshopNoGoList(SearchPmPlanReq req) {
|
|
|
+ public ResponseBean<List<PmWorkshopNoGoListRes>> getPmWorkshopNoGoList(SearchPmWorkshopNoGoListReq req) {
|
|
|
List<PmWorkshopNoGoListRes> pmWorkshopNoGoList = preventMistakeMapper.getPmWorkshopNoGoList(req);
|
|
|
return ResponseBeanBuilder.ok(pmWorkshopNoGoList, Function.identity());
|
|
|
}
|
|
@@ -744,7 +746,7 @@ public class PreventMistakeServiceImpl extends ServiceImpl<PreventMistakeMapper,
|
|
|
* @return 不放行任务对应的点检项目
|
|
|
*/
|
|
|
@Override
|
|
|
- public ResponseBean<List<PmItemNoGoListRes>> getPmItemNoGoList(SearchWorkshopReq req) {
|
|
|
+ public ResponseBean<List<PmItemNoGoListRes>> getPmItemNoGoList(SearchPmItemNoGoListReq req) {
|
|
|
List<PmItemNoGoListRes> pmItemNoGoList = preventMistakeMapper.getPmItemNoGoList(req);
|
|
|
return ResponseBeanBuilder.ok(pmItemNoGoList, Function.identity());
|
|
|
}
|