mitao
2025-03-13 86df207c37502cce1b2043e1c7c0486459eef1d6
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunitySanShuoService.java
@@ -3,8 +3,8 @@
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.sanshuo.ComEventArchiveVO;
import com.panzhihua.common.model.vos.sanshuo.ComEventConciliationVO;
import com.panzhihua.common.model.vos.sanshuo.ComEventRequestVO;
import com.panzhihua.common.model.vos.sanshuo.ComEventVO;
import com.panzhihua.common.model.vos.sanshuo.ComSanRequestVO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.*;
@@ -23,7 +23,7 @@
     * @date 2022-09-07 11:23:51
     */
    @PostMapping("/add")
    R insertComEvent(@RequestBody ComEventRequestVO comEventVO);
    R insertComEvent(@RequestBody ComSanRequestVO comEventVO);
    /**
     * description 更新三说会堂事件表
@@ -93,7 +93,7 @@
     * @date 2022-09-07 11:23:51
     */
    @DeleteMapping("/remove/{id}")
    R remove(@PathVariable Long id);
    R remove(@PathVariable(value = "id") Long id);
    /**
     * description 修改三说会堂事件表状态
@@ -127,7 +127,7 @@
     * @date 2022-09-07 11:23:51
     */
    @PutMapping("/accept/Request")
    R acceptRequest(@RequestParam("id") Long id, @RequestParam("specialistId") Long specterId);
    R acceptRequest(@RequestParam("id") Long id, @RequestParam("specterId") Long specterId);
    /**
     * description 修改三说会堂事件表状态
@@ -180,6 +180,12 @@
     * @author manailin
     * @date 2022-09-07 11:23:51
     */
    @PutMapping("/status/calculate")
    R calculate();
    @GetMapping("/status/calculate")
    R calculate(@RequestParam(value = "level",required = false)Integer level,@RequestParam(value = "id",required = false)Long  id);
    /**
     * 事件范围筛选列表
     * */
    @GetMapping("/rangeList")
    R eventRangeList();
}