Initial commit
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
package com.gxwebsoft.common.system.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.gxwebsoft.common.core.web.PageResult;
|
||||
import com.gxwebsoft.common.system.entity.Industry;
|
||||
import com.gxwebsoft.common.system.param.IndustryParam;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 企业行业记录表Service
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-05-17 11:26:43
|
||||
*/
|
||||
public interface IndustryService extends IService<Industry> {
|
||||
|
||||
/**
|
||||
* 分页关联查询
|
||||
*
|
||||
* @param param 查询参数
|
||||
* @return PageResult<Industry>
|
||||
*/
|
||||
PageResult<Industry> pageRel(IndustryParam param);
|
||||
|
||||
/**
|
||||
* 关联查询全部
|
||||
*
|
||||
* @param param 查询参数
|
||||
* @return List<Industry>
|
||||
*/
|
||||
List<Industry> listRel(IndustryParam param);
|
||||
|
||||
/**
|
||||
* 根据id查询
|
||||
*
|
||||
* @param industryId 行业id
|
||||
* @return Industry
|
||||
*/
|
||||
Industry getByIdRel(Integer industryId);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user