zhongrj
2024-11-11 774e064befe434f974ae5e9700bd4c2913868fd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.springblade.modules.yw.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.yw.entity.YwAttachEntity;
import org.springblade.modules.yw.vo.YwAttachVO;
import com.baomidou.mybatisplus.core.metadata.IPage;
 
/**
 * 业务附件表 服务类
 *
 * @author BladeX
 * @since 2024-11-11
 */
public interface IYwAttachService extends IService<YwAttachEntity> {
    /**
     * 自定义分页
     *
     * @param page
     * @param attach
     * @return
     */
    IPage<YwAttachVO> selectAttachPage(IPage<YwAttachVO> page, YwAttachVO attach);
 
}