package com.artfess.cqxy.wps.controller;

import com.artfess.base.annotation.ApiGroup;
import com.artfess.base.constants.ApiGroupConsts;
import com.artfess.base.model.CommonResult;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author 黎沐华
 * @date 2022/5/5 17:54
 */
@Slf4j
@RestController
@Api(tags = "WPS在线文档服务.通知回调接口")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ})
@RequestMapping("/v1/3rd")
public class NotifyCallBackController {

    /**
     * 回调通知
     */
    @ResponseBody
    @PostMapping("/onnotify")
    public CommonResult onNotify() {
        // TODO：返回数据暂不处理
        return new CommonResult<>("200", "");
    }

}
