Helius
2022-07-04 e909dc0c8bda991895dac5811a01ffe526c28eb0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.xcong.farmer.cms.modules.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.xcong.farmer.cms.modules.system.entity.CmsTemplateEntity;
import org.apache.ibatis.annotations.Param;
 
public interface CmsTemplateMapper extends BaseMapper<CmsTemplateEntity> {
 
    IPage<CmsTemplateEntity> selectInPage(IPage<CmsTemplateEntity> page, @Param("record") CmsTemplateEntity cmsTemplateEntity);
 
    int delete(@Param("id") Long id, @Param("companyId") Long companyId);
}