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);
|
}
|