Showing
3 changed files
with
12 additions
and
2 deletions
@@ -32,11 +32,11 @@ public class InboxController { | @@ -32,11 +32,11 @@ public class InboxController { | ||
32 | @RequestMapping(value = "/addInboxForPlatform") | 32 | @RequestMapping(value = "/addInboxForPlatform") |
33 | @IgnoreSession | 33 | @IgnoreSession |
34 | @IgnoreSignature | 34 | @IgnoreSignature |
35 | - public InBoxResponse addInboxForPlatform(@RequestBody InboxReqVO reqVO){ | 35 | + public String addInboxForPlatform(@RequestBody InboxReqVO reqVO){ |
36 | logger.info("InboxController.addInbox with param is {}", reqVO); | 36 | logger.info("InboxController.addInbox with param is {}", reqVO); |
37 | InBoxResponse result = inBoxSDK.addInbox(reqVO); | 37 | InBoxResponse result = inBoxSDK.addInbox(reqVO); |
38 | logger.info("InboxController.addInbox call result is {}",result); | 38 | logger.info("InboxController.addInbox call result is {}",result); |
39 | - return result; | 39 | + return "SUCCESS"; |
40 | } | 40 | } |
41 | 41 | ||
42 | 42 |
@@ -86,5 +86,10 @@ | @@ -86,5 +86,10 @@ | ||
86 | <groupId>com.yoho.quartz</groupId> | 86 | <groupId>com.yoho.quartz</groupId> |
87 | <artifactId>yoho-quartz-client</artifactId> | 87 | <artifactId>yoho-quartz-client</artifactId> |
88 | </dependency> | 88 | </dependency> |
89 | + | ||
90 | + <dependency> | ||
91 | + <groupId>com.yoho.dsf</groupId> | ||
92 | + <artifactId>yoho-message-sdk</artifactId> | ||
93 | + </dependency> | ||
89 | </dependencies> | 94 | </dependencies> |
90 | </project> | 95 | </project> |
@@ -134,6 +134,11 @@ | @@ -134,6 +134,11 @@ | ||
134 | <artifactId>yoho-quartz-client</artifactId> | 134 | <artifactId>yoho-quartz-client</artifactId> |
135 | <version>1.4.4-SNAPSHOT</version> | 135 | <version>1.4.4-SNAPSHOT</version> |
136 | </dependency> | 136 | </dependency> |
137 | + <dependency> | ||
138 | + <groupId>com.yoho.dsf</groupId> | ||
139 | + <artifactId>yoho-message-sdk</artifactId> | ||
140 | + <version>1.1.3-SNAPSHOT</version> | ||
141 | + </dependency> | ||
137 | </dependencies> | 142 | </dependencies> |
138 | </dependencyManagement> | 143 | </dependencyManagement> |
139 | 144 |
-
Please register or login to post a comment