/** * 回复反馈 */ @RequestMapping(value = "/admin/feedback/reply/submit",method = RequestMethod.POST) @ResponseBody public JsonResult replySubmit(Feedback feedback){ feedbackService.update(feedback); return JsonResult.success("保存成功"); } /** * 删除反馈 */ @RequestMapping("/admin/feedback/delete") @ResponseBody public JsonResult deleteFeedback(@RequestParam("id")Long id){ try{ Feedback feedback = feedbackService.get(id); if(feedback==null){ return JsonResult.error("反馈不存在"); } if(!loginUserIsAdmin() && !Objects.equals(feedback.getUserId(),getLoginUserId())){ return JsonResult.error("没有权限删除,这不是你的反馈"); } feedbackService.delete(id); }catch (Exception e){ return JsonResult.error("删除反馈失败"); } return JsonResult.success("删除反馈成功"); } }
时间: 2024-04-01 22:32:03 浏览: 51
这段代码是FeedbackController类中的另外两个方法,用于回复反馈和删除反馈操作。replySubmit方法是一个请求映射方法,用于处理/admin/feedback/reply/submit请求,它使用FeedbackService来更新反馈信息,并返回一个JsonResult对象表示操作结果。deleteFeedback方法也是一个请求映射方法,用于处理/admin/feedback/delete请求,它使用FeedbackService来删除指定id的反馈信息,并返回一个JsonResult对象表示操作结果。在删除反馈前,它还会判断当前用户是否为管理员或反馈的创建者,如果不是则无权删除,并返回相应的错误信息。
相关问题
@Controller @RequestMapping(value = "/JzAtlas") @Api(tags = {"建筑--图册--操作接口"}) public class JzAtlasAction { @Resource private JzAtlasService service; @ApiOperation(value = "查询单个项目", notes = "项目主键ID") //@RequestMapping(value = "/findByKey", method = {RequestMethod.GET}, produces = "application/json; charset=UTF-8") @RequestMapping(value = "/findByKey", method = {RequestMethod.GET}) @ResponseBody public Object findByKey(Integer id) { return service.findById(id); } @ApiOperation(value = "保存单个项目信息", notes = "传递数据") @RequestMapping(value = "/save", method = {RequestMethod.POST}) @ResponseBody public Object save(@RequestBody JzAtlas model) { return service.save(model); } @ApiOperation(value = "更新单个项目信息", notes = "传递数据") @RequestMapping(value = "/update", method = {RequestMethod.POST}) @ResponseBody public Object update(@RequestBody JzAtlas model) { return service.update(model); } @ApiOperation(value = "查询所有", notes = "无查询条件") @RequestMapping(value = "/findAllList", method = {RequestMethod.POST}) @ResponseBody public Object findList() { return service.findList(); } @ApiOperation(value = "根据条件查询", notes = "查询参数") @RequestMapping(value = "/findList", method = {RequestMethod.POST}) @ResponseBody public Object findListByQuery(@RequestBody JzAtlasRequest requestModel) { return service.findListByQuery(requestModel); } @ApiOperation(value = "删除单个项目信息", notes = "项目主键ID") @RequestMapping(value = "/delete", method = {RequestMethod.POST}) @ResponseBody public Object delete(Integer id) { return service.delete(id); } }
这是一个Java类,使用了Spring框架的@Controller注解,表示这是一个控制器类。通过@RequestMapping注解指定了处理请求的URL路径为"/JzAtlas"。@Api注解用于生成API文档,其中的tags属性指定了文档中的标签为"建筑--图册--操作接口"。
该类中包含了多个处理请求的方法,使用了不同的请求方法(GET、POST)和URL路径。每个方法都使用了@ResponseBody注解,表示返回的结果将被转换为JSON格式。其中,@ApiOperation注解用于生成API文档中的方法描述。
- findByKey方法:用于根据项目主键ID查询单个项目信息。
- save方法:用于保存单个项目信息,接收一个JzAtlas对象作为参数。
- update方法:用于更新单个项目信息,接收一个JzAtlas对象作为参数。
- findList方法:用于查询所有项目信息。
- findListByQuery方法:根据条件查询项目信息,接收一个JzAtlasRequest对象作为参数。
- delete方法:删除单个项目信息,接收一个项目主键ID作为参数。
其中,@Resource注解用于注入JzAtlasService对象,表示该类依赖于JzAtlasService服务类。
// IntelliJ API Decompiler stub source generated from a class file // Implementation of methods is not available package com.system.controller; @org.springframework.stereotype.Controller @org.springframework.web.bind.annotation.RequestMapping({"/admin"}) public class AdminController { @javax.annotation.Resource(name = "studentServiceImpl") private com.system.service.StudentService studentService; @javax.annotation.Resource(name = "teacherServiceImpl") private com.system.service.TeacherService teacherService; @javax.annotation.Resource(name = "courseServiceImpl") private com.system.service.CourseService courseService; @javax.annotation.Resource(name = "collegeServiceImpl") private com.system.service.CollegeService collegeService; @javax.annotation.Resource(name = "userloginServiceImpl") private com.system.service.UserloginService userloginService; public AdminController() { /* compiled code */ } @org.springframework.web.bind.annotation.RequestMapping({"/showStudent"}) public java.lang.String showStudent(org.springframework.ui.Model model, java.lang.Integer page) throws java.lang.Exception { /* compiled code */ } @org.springframework.web.bind.annotation.RequestMapping(value = {"/addStudent"}, method = {org.springframework.web.bind.annotation.RequestMethod.GET}) public java.lang.String addStudentUI(org.springframework.ui.Model model) throws java.lang.Exception { /* compiled code */ } @org.springframework.web.bind.annotation.RequestMapping(value = {"/addStudent"}, method = {org.springframework.web.bind.annotation.RequestMethod.POST}) public java.lang.String addStudent(com.system.po.StudentCustom studentCustom, org.springframework.ui.Model model) throws java.lang.Exception { /* compiled code */ } @org.springframework.web.bind.annotation.RequestMapping(value = {"/editStudent"}, method = {org.springframework.web.bind.annotation.RequestMethod.GET}) public java.lang.String editStudentUI(java.lang.Integer id, org.springframework.ui.Model
该类为一个名为"AdminController"的控制器类,使用了Spring Framework的注解来声明该类为控制器,并将请求映射到"/admin"路径上。该类包含了一些方法,用于处理与学生、教师、课程、学院和用户登录相关的请求。
该类中使用了@Resource注解来注入StudentService、TeacherService、CourseService、CollegeService和UserloginService等服务层组件,这些组件将在处理请求时被使用。
其中,showStudent方法用于展示学生信息,addStudentUI和editStudentUI方法用于展示添加和编辑学生信息的页面,addStudent方法用于处理添加学生信息的请求。
该类的代码被反编译,因此无法确定具体实现细节。
阅读全文