Create & Init Project...
This commit is contained in:
23
app/service/main/videoup/model/message/message_staff.go
Normal file
23
app/service/main/videoup/model/message/message_staff.go
Normal 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"`
|
||||
}
|
Reference in New Issue
Block a user