package com.xcong.farmer.cms.modules.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.xcong.farmer.cms.modules.system.entity.CmsAdInfoEntity; import org.apache.ibatis.annotations.Param; import java.util.List; public interface CmsAdInfoMapper extends BaseMapper { Page selectInPage(Page page, @Param("record") CmsAdInfoEntity cmsAdInfoEntity); List selectByGroupIdAndCompanyId(@Param("groupId") Long groupId, @Param("companyId") Long companyId); }