zhangtiansen
2022-09-06 c9a036da723b08fc34ecc90c0668348f01e01458
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.panzhihua.service_community.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.common.model.dtos.community.sanshuo.ComSanShuoIndustryCenterDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.service_community.entity.ComSanshuoIndustryCenter;
 
public interface ComSanShuoIndustryCenterService extends IService<ComSanshuoIndustryCenter> {
 
    /**
     * 后台业务中心列表
     * @param keyWord 搜索关键字
     * @param page
     * @param size
     * @return 处理结果
     * */
    R pageIndustryCenter(String keyWord, Integer page, Integer size);
 
    /**
     * 添加或修改业务中心信息
     * @param comSanShuoIndustryCenterDTO
     * @return 处理结果
     * */
    R addOrUpdate(ComSanShuoIndustryCenterDTO comSanShuoIndustryCenterDTO);
}