消息审核办理测试接口
This commit is contained in:
@@ -6,10 +6,7 @@ import com.yxt.common.core.vo.PagerVo;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -135,4 +132,8 @@ public interface MessageFeign {
|
||||
@ApiOperation("移交推送消息")
|
||||
@PostMapping("/pushTransferMessage")
|
||||
ResultBean pushTransferMessage(@RequestBody MessagePushTransferDto dto);
|
||||
|
||||
@ApiOperation("消息推送测试")
|
||||
@PostMapping("/pushTest")
|
||||
ResultBean pushTest(@RequestParam("userSid") String userSid);
|
||||
}
|
||||
@@ -110,4 +110,9 @@ public class MessageFeignFallback implements MessageFeign {
|
||||
public ResultBean pushTransferMessage(MessagePushTransferDto dto) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ResultBean pushTest(String userSid) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user