Helius
2022-11-12 067546725a07d08e0346ebf3a410d481e97e5730
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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<CmsAdInfoEntity> {
 
    Page<CmsAdInfoEntity> selectInPage(Page<CmsAdInfoEntity> page, @Param("record") CmsAdInfoEntity cmsAdInfoEntity);
 
    List<CmsAdInfoEntity> selectByGroupIdAndCompanyId(@Param("groupId") Long groupId, @Param("companyId") Long companyId);
 
}