huliguo
2025-06-02 5952d2383571c3fcd96dc0eaad5347b21fce415d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.Industry;
import com.ruoyi.system.pojo.dto.AddIndustryDTO;
import com.ruoyi.system.pojo.dto.EditIndustryDTO;
import com.ruoyi.system.pojo.vo.IndustryPageVO;
 
 
public interface IndustryService extends IService<Industry>  {
 
    IPage<IndustryPageVO> getIndustryPage(Integer pageNum, Integer pageSize, String name);
 
    void add(AddIndustryDTO dto);
 
    void edit( EditIndustryDTO dto);
 
    void delete(Integer id);
}