linwe
2024-11-23 db321b2c533fef1d5ddba16b3908693cd984cfb9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
 
}