Authored by mali

发站内信接口

... ... @@ -32,11 +32,11 @@ public class InboxController {
@RequestMapping(value = "/addInboxForPlatform")
@IgnoreSession
@IgnoreSignature
public InBoxResponse addInboxForPlatform(@RequestBody InboxReqVO reqVO){
public String addInboxForPlatform(@RequestBody InboxReqVO reqVO){
logger.info("InboxController.addInbox with param is {}", reqVO);
InBoxResponse result = inBoxSDK.addInbox(reqVO);
logger.info("InboxController.addInbox call result is {}",result);
return result;
return "SUCCESS";
}
... ...
... ... @@ -86,5 +86,10 @@
<groupId>com.yoho.quartz</groupId>
<artifactId>yoho-quartz-client</artifactId>
</dependency>
<dependency>
<groupId>com.yoho.dsf</groupId>
<artifactId>yoho-message-sdk</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
... ...
... ... @@ -134,6 +134,11 @@
<artifactId>yoho-quartz-client</artifactId>
<version>1.4.4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.yoho.dsf</groupId>
<artifactId>yoho-message-sdk</artifactId>
<version>1.1.3-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
... ...