package org.springblade.modules.yw.mapper;
|
|
import org.springblade.modules.yw.entity.YwAttachEntity;
|
import org.springblade.modules.yw.vo.YwAttachVO;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import java.util.List;
|
|
/**
|
* 业务附件表 Mapper 接口
|
*
|
* @author BladeX
|
* @since 2024-11-11
|
*/
|
public interface YwAttachMapper extends BaseMapper<YwAttachEntity> {
|
|
/**
|
* 自定义分页
|
*
|
* @param page
|
* @param attach
|
* @return
|
*/
|
List<YwAttachVO> selectAttachPage(IPage page, YwAttachVO attach);
|
|
}
|