huanghongfa
2021-01-22 04c96f26282f021fcc59b40d6f11f172fc070af8
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
26
27
28
29
30
31
package com.panzhihua.service_community.service;
 
import com.panzhihua.common.model.dtos.community.ComActDiscussDTO;
import com.panzhihua.common.model.vos.R;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 一起议
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2021-01-22 14:50
 **/
public interface ComActDiscussService {
    /**
     * 一起议-新增
     * @param comActDiscussDTO 新增参数
     * @return 新增结果
     */
    R addDiscuss(ComActDiscussDTO comActDiscussDTO);
    /**
     * 一起议-详情
     * @param id 主键
     * @return ComActDiscussVO
     */
    R detailDiscuss(Long id);
    /**
     * 一起议-删除
     * @param id 主键
     * @return 删除结果
     */
    R deleteDiscuss(Long id);
}