Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package message
const (
//RouteBplusStaff pgc提交
RouteBplusStaff = "bplus_staff"
)
type StaffBox struct {
RID int64 `json:"rid"`
Type int8 `json:"type"`
ADDStaff []*StaffItem `json:"added_staffs"`
DelStaff []*StaffItem `json:"removed_staffs"`
}
type StaffItem struct {
Type int8 `json:"uid_type"`
UID int64 `json:"uid"`
}
// BplusCardMsg 粉丝动态databus消息
type BplusCardMsg struct {
Outbox *StaffBox `json:"outbox"`
}