Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 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"`
}