公会bingo接口

This commit is contained in:
wh_zcy 2022-12-06 18:01:23 +08:00
parent 0172144b47
commit 65e59a478f
2 changed files with 16 additions and 0 deletions

View File

@ -256,6 +256,10 @@ type (
MembersByUid(uid string) (list []*pb.SociatyMemberInfo)
// 获取公会成员
MembersBySociatyId(sociatyId string) (list []*pb.SociatyMemberInfo)
// 设置工会经验
BingoSetExp(session IUserSession, exp int32) error
// 设置工会经验
BingoSetActivity(session IUserSession, activity int32) error
///红点
IReddot
}
@ -285,6 +289,8 @@ type (
IWorldtask interface {
// 任务条件达成通知
TaskcondNotify(session IUserSession, condId int32) error
// bingo所有任务
BingoAllTask(session IUserSession) error
// bingo任务
BingoJumpTask(session IUserSession, groupId, rtaskId int32) error
// 查询我的世界任务

View File

@ -160,3 +160,13 @@ func (this *Sociaty) RpcGetSociaty(ctx context.Context, req *pb.RPCGeneralReqA1,
log.Debug("跨服公会", log.Fields{"sociaty": reply})
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
}