公会bingo接口
This commit is contained in:
parent
0172144b47
commit
65e59a478f
@ -256,6 +256,10 @@ type (
|
|||||||
MembersByUid(uid string) (list []*pb.SociatyMemberInfo)
|
MembersByUid(uid string) (list []*pb.SociatyMemberInfo)
|
||||||
// 获取公会成员
|
// 获取公会成员
|
||||||
MembersBySociatyId(sociatyId string) (list []*pb.SociatyMemberInfo)
|
MembersBySociatyId(sociatyId string) (list []*pb.SociatyMemberInfo)
|
||||||
|
// 设置工会经验
|
||||||
|
BingoSetExp(session IUserSession, exp int32) error
|
||||||
|
// 设置工会经验
|
||||||
|
BingoSetActivity(session IUserSession, activity int32) error
|
||||||
///红点
|
///红点
|
||||||
IReddot
|
IReddot
|
||||||
}
|
}
|
||||||
@ -285,6 +289,8 @@ type (
|
|||||||
IWorldtask interface {
|
IWorldtask interface {
|
||||||
// 任务条件达成通知
|
// 任务条件达成通知
|
||||||
TaskcondNotify(session IUserSession, condId int32) error
|
TaskcondNotify(session IUserSession, condId int32) error
|
||||||
|
// bingo所有任务
|
||||||
|
BingoAllTask(session IUserSession) error
|
||||||
// bingo任务
|
// bingo任务
|
||||||
BingoJumpTask(session IUserSession, groupId, rtaskId int32) error
|
BingoJumpTask(session IUserSession, groupId, rtaskId int32) error
|
||||||
// 查询我的世界任务
|
// 查询我的世界任务
|
||||||
|
@ -160,3 +160,13 @@ func (this *Sociaty) RpcGetSociaty(ctx context.Context, req *pb.RPCGeneralReqA1,
|
|||||||
log.Debug("跨服公会", log.Fields{"sociaty": reply})
|
log.Debug("跨服公会", log.Fields{"sociaty": reply})
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 设置工会经验
|
||||||
|
func (this *Sociaty) BingoSetExp(session comm.IUserSession, exp int32) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置工会经验
|
||||||
|
func (this *Sociaty) BingoSetActivity(session comm.IUserSession, activity int32) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user