Administrator
yesterday e9d3f263ad049ea59e3d5fa8235e6a7d808f2183
src/main/java/cc/mrbird/febs/ai/controller/productQuestion/AiProductQuestionController.java
@@ -86,11 +86,17 @@
    }
    @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(