Showing
1 changed file
with
13 additions
and
0 deletions
@@ -81,4 +81,17 @@ public class InBoxController { | @@ -81,4 +81,17 @@ public class InBoxController { | ||
81 | responseBean.setMessage("保存成功"); | 81 | responseBean.setMessage("保存成功"); |
82 | return responseBean; | 82 | return responseBean; |
83 | } | 83 | } |
84 | + | ||
85 | + /** | ||
86 | + * 删除消息 | ||
87 | + */ | ||
88 | + @RequestMapping("/delInbox") | ||
89 | + public ResponseBean delInbox(@RequestBody InboxReqVO reqVO){ | ||
90 | + logger.info("addInbox with param is {}", reqVO); | ||
91 | + inBoxService.addInbox(reqVO); | ||
92 | + ResponseBean responseBean = new ResponseBean(); | ||
93 | + responseBean.setCode("200"); | ||
94 | + responseBean.setMessage("保存成功"); | ||
95 | + return responseBean; | ||
96 | + } | ||
84 | } | 97 | } |
-
Please register or login to post a comment