package com.panzhihua.service_community.service.impl; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.panzhihua.common.model.dtos.property.CommonPage; import com.panzhihua.common.model.vos.R; import com.panzhihua.service_community.entity.ComActEasyPhotoMember; import com.panzhihua.service_community.dao.ComActEasyPhotoMemberDao; import com.panzhihua.service_community.service.ComActEasyPhotoMemberService; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; /** * 随手拍网格员(ComActEasyPhotoMember)表服务实现类 * projectName 成都呐喊信息技术有限公司-智慧社区项目 * description: 随手拍网格员相关功能 * * @author zzj * @since 2022-04-12 10:33:25 */ @Slf4j @Service public class ComActEasyPhotoMemberServiceImpl extends ServiceImpl implements ComActEasyPhotoMemberService { @Override public R pageList(CommonPage commonPage) { return R.ok(this.baseMapper.pageList(new Page(commonPage.getPage(), commonPage.getSize()),commonPage)); } }