| | |
| | | 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.*; |
| | | |
| | |
| | | * @date 2022-09-07 11:23:51 |
| | | */ |
| | | @PostMapping("/add") |
| | | R insertComEvent(@RequestBody ComEventRequestVO comEventVO); |
| | | R insertComEvent(@RequestBody ComSanRequestVO comEventVO); |
| | | |
| | | /** |
| | | * description 更新三说会堂事件表 |
| | |
| | | * @date 2022-09-07 11:23:51 |
| | | */ |
| | | @DeleteMapping("/remove/{id}") |
| | | R remove(@PathVariable Long id); |
| | | R remove(@PathVariable(value = "id") Long id); |
| | | |
| | | /** |
| | | * description 修改三说会堂事件表状态 |
| | |
| | | * @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 修改三说会堂事件表状态 |
| | |
| | | * @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(); |
| | | } |