WechatGroup
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user