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.CmsFriendlyLinkEntity; import org.apache.ibatis.annotations.Param; import java.util.List; public interface CmsFriendlyLinkMapper extends BaseMapper { Page selectInPage(Page page, @Param("record") CmsFriendlyLinkEntity cmsFriendlyLinkEntity); List selectByGroupIdAndCompanyId(@Param("groupId") Long groupId, @Param("companyId") Long companyId); List selectByGroupCodeAndCompanyId(@Param("code") String code, @Param("companyId") Long companyId); }