huliguo
2025-07-17 2485a4875adda2ffd0e8cfccdf749f15fe8d48cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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.Industry;
import com.ruoyi.system.pojo.vo.IndustryPageVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface IndustryMapper extends BaseMapper<Industry> {
    IPage<IndustryPageVO> getIndustryPage(@Param("page") IPage<IndustryPageVO> page, @Param("name")String name);
}