| | |
| | | } |
| | | |
| | | @PostMapping(value = "stateUpdate/{type}/{ids}") |
| | | @ControllerEndpoint(operation = "更新", exceptionMessage = "更新失败") |
| | | @ControllerEndpoint(operation = "更新", exceptionMessage = "操作失败") |
| | | public FebsResponse stateUpdate(@PathVariable("ids") String ids, @PathVariable("type") Integer type) { |
| | | return aiProductQuestionService.stateUpdate(ids, type); |
| | | } |
| | | |
| | | @PostMapping(value = "productQuestionDelete/{ids}") |
| | | @ControllerEndpoint(operation = "删除", exceptionMessage = "操作失败") |
| | | public FebsResponse productQuestionDelete(@PathVariable("ids") String ids) { |
| | | return aiProductQuestionService.productQuestionDelete(ids); |
| | | } |
| | | |
| | | @GetMapping("delete/{id}") |
| | | @ControllerEndpoint(operation = "删除", exceptionMessage = "操作失败") |
| | | public FebsResponse delete( |