|
|
|
@ -5,13 +5,15 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
|
|
import com.docus.infrastructure.core.db.dao.impl.BaseDaoImpl;
|
|
|
|
|
import com.docus.infrastructure.web.request.SearchRequest;
|
|
|
|
|
import com.docus.infrastructure.web.response.PageResult;
|
|
|
|
|
import com.docus.server.entity.auth.TaskConfigTest;
|
|
|
|
|
import com.docus.server.archivefile.infrastructure.mapper.TaskConfigTestMapper;
|
|
|
|
|
import com.docus.server.archivefile.infrastructure.dao.ITaskConfigTestDao;
|
|
|
|
|
import com.docus.server.archivefile.infrastructure.mapper.TaskConfigTestMapper;
|
|
|
|
|
import com.docus.server.entity.auth.TaskConfigTest;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* <p>
|
|
|
|
|
* 主动任务测试对象 TaskConfigTestDaoImpl 数据访问实现类
|
|
|
|
@ -25,6 +27,7 @@ public class TaskConfigTestDaoImpl extends BaseDaoImpl<TaskConfigTestMapper, Tas
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 按主键查询
|
|
|
|
|
*
|
|
|
|
|
* @param id 主键Id
|
|
|
|
|
* @return 实体
|
|
|
|
|
*/
|
|
|
|
@ -35,6 +38,7 @@ public class TaskConfigTestDaoImpl extends BaseDaoImpl<TaskConfigTestMapper, Tas
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增
|
|
|
|
|
*
|
|
|
|
|
* @param taskConfigTest 编辑参数
|
|
|
|
|
* @return 成功或失败
|
|
|
|
|
*/
|
|
|
|
@ -45,6 +49,7 @@ public class TaskConfigTestDaoImpl extends BaseDaoImpl<TaskConfigTestMapper, Tas
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 编辑
|
|
|
|
|
*
|
|
|
|
|
* @param taskConfigTest 编辑参数
|
|
|
|
|
* @return 成功或失败
|
|
|
|
|
*/
|
|
|
|
@ -55,6 +60,7 @@ public class TaskConfigTestDaoImpl extends BaseDaoImpl<TaskConfigTestMapper, Tas
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除
|
|
|
|
|
*
|
|
|
|
|
* @param ids 主键ids
|
|
|
|
|
* @return 成功或失败
|
|
|
|
|
*/
|
|
|
|
@ -65,6 +71,7 @@ public class TaskConfigTestDaoImpl extends BaseDaoImpl<TaskConfigTestMapper, Tas
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 关键字搜素
|
|
|
|
|
*
|
|
|
|
|
* @param searchRequest 搜索参数
|
|
|
|
|
* @return 分页列表
|
|
|
|
|
*/
|
|
|
|
|