mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.panzhihua.service_community.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.common.model.dtos.community.ComActProceedingsDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.service_community.entity.ComActAcidDangerMember;
import com.panzhihua.service_community.entity.ComActProceedings;
 
public interface ComActProceedingsService extends IService<ComActProceedings> {
 
    /**
     * 分页查询议事委员会
     * @param keyWord 搜索关键字
     * @return 处理结果
     * */
    R pageProceedings(Integer page, Integer size, String keyWord);
 
    /**
     * 新增或修改议事委员会
     * @param comActProceedingsDTO
     * @return 处理结果
     * */
    R addOrUpdate(ComActProceedingsDTO comActProceedingsDTO);
}