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
25
package org.springblade.modules.yw.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springblade.modules.yw.entity.YwAttachEntity;
import org.springblade.modules.yw.vo.YwAttachVO;
import org.springblade.modules.yw.mapper.YwAttachMapper;
import org.springblade.modules.yw.service.IYwAttachService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
 
/**
 * 业务附件表 服务实现类
 *
 * @author BladeX
 * @since 2024-11-11
 */
@Service
public class YwAttachServiceImpl extends ServiceImpl<YwAttachMapper, YwAttachEntity> implements IYwAttachService {
 
    @Override
    public IPage<YwAttachVO> selectAttachPage(IPage<YwAttachVO> page, YwAttachVO attach) {
        return page.setRecords(baseMapper.selectAttachPage(page, attach));
    }
 
}