23 lines
475 B
Java
23 lines
475 B
Java
package com.ruoyi.cms.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.ruoyi.common.core.domain.entity.Industry;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 行业Mapper接口
|
|
* @author LishunDong
|
|
* @date 2024-11-12
|
|
*/
|
|
public interface IndustryMapper extends BaseMapper<Industry>
|
|
{
|
|
/**
|
|
* 查询行业列表
|
|
*
|
|
* @param industry 行业
|
|
* @return 行业集合
|
|
*/
|
|
public List<Industry> selectIndustryList(Industry industry);
|
|
}
|