package com.ruoyi.system.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.ruoyi.system.domain.Industry;
|
import com.ruoyi.system.domain.Licence;
|
import com.ruoyi.system.pojo.vo.IndustryPageVO;
|
import com.ruoyi.system.pojo.vo.LicencePageVO;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
@Mapper
|
public interface LicenceMapper extends BaseMapper<Licence> {
|
|
IPage<LicencePageVO> getIndustryPage(@Param("page") IPage<LicencePageVO> page,@Param("name") String name);
|
}
|