package com.ruoyi.system.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.ruoyi.system.domain.Agreement;
|
import com.ruoyi.system.domain.CompanyType;
|
import com.ruoyi.system.pojo.vo.BannerPageVO;
|
import com.ruoyi.system.pojo.vo.CompanyTypePageVO;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
@Mapper
|
public interface CompanyTypeMapper extends BaseMapper<CompanyType> {
|
IPage<CompanyTypePageVO> getCompanyTypePage(@Param("page") IPage<CompanyTypePageVO> page,@Param("name") String name);
|
}
|