...
|
...
|
@@ -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";
|
|
|
}
|
|
|
|
|
|
|
...
|
...
|
|