package com.panzhihua.service_community.dao;
|
|
import com.panzhihua.service_community.entity.ComActEasyPhotoHandler;
|
import com.panzhihua.common.model.dtos.common.*;
|
import com.panzhihua.common.model.vos.common.*;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Mapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import java.util.List;
|
|
/**
|
* title: 随手拍、微心愿处理人绑定表表数据库访问层
|
* <p>
|
* projectName 成都呐喊信息技术有限公司-智慧社区项目
|
* <p>
|
* description: 随手拍、微心愿处理人绑定表表数据库访问层
|
*
|
* @author lyq
|
* @date 2022-03-01 13:45:11
|
*/
|
@Mapper
|
public interface ComActEasyPhotoHandlerMapper extends BaseMapper<ComActEasyPhotoHandler> {
|
|
/**
|
* description detailById 查询详情
|
*
|
* @param id 主键id
|
* @return 详情数据
|
* @author lyq
|
* @date 2022-03-01 13:45:11
|
*/
|
ComActEasyPhotoHandlerVo queryById(Long id);
|
|
/**
|
* description queryAllByLimit 分页查询
|
*
|
* @param comActEasyPhotoHandler 请求参数
|
* @param page 分页参数
|
* @return 分页查询列表数据
|
* @author lyq
|
* @date 2022-03-01 13:45:11
|
*/
|
IPage<ComActEasyPhotoHandlerVo> queryAllByLimit(@Param("dto") PageComActEasyPhotoHandlerDto comActEasyPhotoHandler, Page page);
|
|
/**
|
* description queryByPage 查询列表
|
*
|
* @param comActEasyPhotoHandler 请求参数
|
* @return 列表数据
|
* @author lyq
|
* @date 2022-03-01 13:45:11
|
*/
|
List<ComActEasyPhotoHandlerVo> queryAllByList(@Param("dto") PageComActEasyPhotoHandlerDto comActEasyPhotoHandler);
|
|
/**
|
* 获取处理记录
|
* @param serviceId
|
* @param serviceType
|
* @return
|
*/
|
List<ComActEasyPhotoHandlerVo> selectHandleRecord(@Param("serviceId") Long serviceId, @Param("serviceType") Integer serviceType);
|
}
|