123456789101112131415161718192021222324 |
- import "../base.api"
- type (
-
- //add_friend_by_phone api接口请求值
- AddWechatFriendLogInfo {
- Type int `json:"type"`
- WeChatIds []string `json:"WeChatId,optional,omitempty"`
- Phone string `json:"phone"`
- Message string `json:"message"`
- }
- )
- @server(
- jwt: Auth
- group: add_friend
- middleware: Authority
- )
- service Wechat {
- // 手机号加好友接口
- @handler AddFriendByPhone
- post /add_friend/add_friend_by_phone (AddWechatFriendLogInfo) returns (BaseMsgResp)
- }
|