fix
Helius
2022-11-12 8c653240c5174e3182faf899b0ada989d4dcfe5f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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<CmsFriendlyLinkEntity> {
 
    Page<CmsFriendlyLinkEntity> selectInPage(Page<CmsFriendlyLinkEntity> page, @Param("record") CmsFriendlyLinkEntity cmsFriendlyLinkEntity);
 
    List<CmsFriendlyLinkEntity> selectByGroupIdAndCompanyId(@Param("groupId") Long groupId, @Param("companyId") Long companyId);
 
    List<CmsFriendlyLinkEntity> selectByGroupCodeAndCompanyId(@Param("code") String code, @Param("companyId") Long companyId);
}