2022-10-09 17:33:16 +08:00
|
|
|
|
package com.rzyc.mapper;
|
|
|
|
|
|
|
|
|
|
|
|
import com.rzyc.model.EntPostTask;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* <p>
|
|
|
|
|
|
* Mapper 接口
|
|
|
|
|
|
* </p>
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author
|
|
|
|
|
|
* @since 2022-10-09
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Repository
|
|
|
|
|
|
public interface EntPostTaskMapper extends BaseMapper<EntPostTask> {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 查询企业用户清单任务
|
|
|
|
|
|
* @param enterpriseId 企业id
|
|
|
|
|
|
* @param entUserId 企业用户id
|
|
|
|
|
|
* @param postId 岗位id
|
|
|
|
|
|
* @param listId 清单id
|
|
|
|
|
|
* @param content 内容模糊搜索
|
|
|
|
|
|
* @param taskState 任务状态
|
2022-10-10 15:57:14 +08:00
|
|
|
|
* @param page 页码
|
|
|
|
|
|
* @param pageSize 条数
|
2022-10-09 17:33:16 +08:00
|
|
|
|
* @return EntPostTask 企业用户清单任务
|
|
|
|
|
|
* */
|
|
|
|
|
|
List<EntPostTask>selectEntUserPostTask(@Param("enterpriseId") String enterpriseId, @Param("entUserId")String entUserId,
|
|
|
|
|
|
@Param("postId")String postId, @Param("listId")String listId,
|
2022-10-10 15:57:14 +08:00
|
|
|
|
@Param("content")String content,@Param("taskState") Integer taskState,
|
|
|
|
|
|
@Param("page") Integer page,@Param("pageSize") Integer pageSize);
|
2022-10-09 17:33:16 +08:00
|
|
|
|
|
2022-10-31 17:33:15 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 查询企业用户清单任务,主要筛选项listId
|
|
|
|
|
|
* @param enterpriseId 企业id
|
|
|
|
|
|
* @param listId 清单id
|
|
|
|
|
|
* @param content 内容模糊搜索
|
|
|
|
|
|
* @param page 页码
|
|
|
|
|
|
* @param pageSize 条数
|
|
|
|
|
|
* @return EntPostTask 企业用户清单任务
|
|
|
|
|
|
* */
|
|
|
|
|
|
List<EntPostTask>selectEntUserPostTaskByListId(@Param("enterpriseId") String enterpriseId, @Param("listId")String listId, @Param("content")String content,
|
|
|
|
|
|
@Param("page") Integer page,@Param("pageSize") Integer pageSize);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-09 17:33:16 +08:00
|
|
|
|
}
|