仪表盘
版本库
文件存储
活动
搜索
登录
main
/
smartor
smartor代码库
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
代码提交
liusheng
2025-03-06
d9a919279d92fdbb25591b56ad0f746c5609e5a7
[smartor.git]
/
smartor
/
src
/
main
/
java
/
com
/
smartor
/
service
/
WeChatService.java
1
2
3
4
5
6
7
8
package com.smartor.service;
import com.smartor.domain.WeChatSendVo;
import org.springframework.web.bind.annotation.RequestBody;
public interface WeChatService {
public Boolean sendMessageToFollowers(@RequestBody WeChatSendVo weChatSendVo);
}