增加通过id删除currTask

This commit is contained in:
lgh 2022-07-12 22:35:13 +08:00
parent 93eaf9ed40
commit 5ae4100205
2 changed files with 12 additions and 0 deletions

View File

@ -78,6 +78,13 @@ public interface CurrTaskService {
* @return 结果
*/
R<String> deleteBySheetNo(String sheetNo);
/**
* 通过id删除生产单
*
* @param
* @return 结果
*/
R<String> deleteBySheetNo(IdParam idParam);
/**
* 首页 获取当前执行的任务

View File

@ -229,6 +229,11 @@ public class CurrTaskServiceImpl extends BaseService implements CurrTaskService
}
@Override
public R<String> deleteBySheetNo(IdParam idParam) {
return null;
}
@Override
public R<PageVo<CurrTaskMainQueryVo>> currentTaskMainPage(BasePageParam param) {
QueryWrapper<CurrTask> currTaskQueryWrapper = new QueryWrapper<>();