You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
468 B
23 lines
468 B
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"` |
|
}
|
|
|