-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
68 additions
and
59 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
wcferry/types/msg_content_revoke.go → wcferry/types/msg_content_10002.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
package types | ||
|
||
// 撤回消息提示 | ||
// @type 10002 | ||
// @field Msg.Content | ||
|
||
type RevokeContent struct { | ||
|
1 change: 0 additions & 1 deletion
1
wcferry/types/msg_content_friend.go → wcferry/types/msg_content_37.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
package types | ||
|
||
// 好友请求消息 | ||
// @type 37 | ||
// @field Msg.Content | ||
|
||
type FriendRequestContent struct { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package types | ||
|
||
// 引用消息 | ||
// @field Msg.Content | ||
|
||
type ReferContent struct { | ||
Msg struct { | ||
AppMsg struct { | ||
Action string `json:"action"` | ||
Des string `json:"des"` | ||
ReferMsg struct { | ||
Svrid string `json:"svrid"` | ||
} `json:"refermsg"` | ||
Title string `json:"title"` | ||
Type string `json:"type"` // 57 | ||
URL string `json:"url"` | ||
} `json:"appmsg"` | ||
CommentURL string `json:"commenturl"` | ||
FromUsername string `json:"fromusername"` | ||
Scene string `json:"scene"` | ||
} `json:"msg"` | ||
} | ||
|
||
// 聊天记录 | ||
// @field Msg.Content | ||
|
||
type RecordContent struct { | ||
Msg struct { | ||
AppMsg struct { | ||
Action string `json:"action"` | ||
Des string `json:"des"` | ||
RecordItem string `json:"recorditem"` | ||
Title string `json:"title"` | ||
Type string `json:"type"` // 19 | ||
URL string `json:"url"` | ||
} `json:"appmsg"` | ||
CommentURL string `json:"commenturl"` | ||
FromUsername string `json:"fromusername"` | ||
Scene string `json:"scene"` | ||
} `json:"msg"` | ||
} | ||
|
||
// 接收转账 | ||
// @field Msg.Content | ||
|
||
type TransferReceiveContent struct { | ||
Msg struct { | ||
AppMsg struct { | ||
Action string `json:"action"` | ||
Des string `json:"des"` | ||
Title string `json:"title"` | ||
Type string `json:"type"` // 1:转账 3:已收款 | ||
URL string `json:"url"` | ||
WCPayInfo struct { | ||
BeginTransferTime string `json:"begintransfertime"` | ||
EffectiveDate string `json:"effectivedate"` | ||
FeeDesc string `json:"feedesc"` | ||
InvalidTime string `json:"invalidtime"` | ||
PayMemo string `json:"pay_memo"` | ||
PayerUsername string `json:"payer_username"` | ||
PaySubtype string `json:"paysubtype"` | ||
ReceiverUsername string `json:"receiver_username"` | ||
TranscationID string `json:"transcationid"` | ||
TransferID string `json:"transferid"` | ||
} `json:"wcpayinfo"` | ||
} `json:"appmsg"` | ||
} `json:"msg"` | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.