huanghongfa
2021-01-22 04c96f26282f021fcc59b40d6f11f172fc070af8
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -2,10 +2,7 @@
import com.panzhihua.common.model.dtos.AppletesBackstageConfigDTO;
import com.panzhihua.common.model.dtos.advertisement.ComOpsAdvDTO;
import com.panzhihua.common.model.dtos.community.ComActEasyPhotoCommentDTO;
import com.panzhihua.common.model.dtos.community.PageComActEasyPhotoCommentDTO;
import com.panzhihua.common.model.dtos.community.ComActEasyPhotoCommentUserDTO;
import com.panzhihua.common.model.dtos.community.PageComActDTO;
import com.panzhihua.common.model.dtos.community.*;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.SystemmanagementConfigVO;
import com.panzhihua.common.model.vos.community.*;
@@ -689,4 +686,28 @@
     */
    @PostMapping("addcomacteasyphotocomment")
    R addComActEasyPhotoComment(@RequestBody ComActEasyPhotoCommentDTO comActEasyPhotoCommentDTO);
    /**
     * 一起议-新增
     * @param comActDiscussDTO 新增参数
     * @return 新增结果
     */
    @PostMapping("adddiscuss")
    R addDiscuss(@RequestBody ComActDiscussDTO comActDiscussDTO);
    /**
     * 一起议-详情
     * @param id 主键
     * @return ComActDiscussVO
     */
    @PostMapping("detaildiscuss")
    R detailDiscuss(@RequestParam("id") Long id);
    /**
     * 一起议-删除
     * @param id 主键
     * @return 删除结果
     */
    @PostMapping("deletediscuss")
    R deleteDiscuss(@RequestParam("id") Long id);
}