Commit bab4ac75 authored by 刘基明's avatar 刘基明

消息通知添加themeId

parent 1104432d
package com.tanpu.community.controller;
import com.tanpu.common.api.CommonResp;
import com.tanpu.common.auth.AuthLogin;
import io.swagger.annotations.ApiOperation;
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;
@RestController
@Slf4j
@RequestMapping(value = "/api")
public class CallBackController {
@ApiOperation("发表评论")
@AuthLogin
@PostMapping(value = "/picCheck/callback")
@ResponseBody
public CommonResp<Void> picCheck() {
return CommonResp.success();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment