报错修改

This commit is contained in:
meixiongfeng 2022-11-21 12:11:09 +08:00
parent aa24b4d317
commit 6e7e13ff1d

View File

@ -132,7 +132,7 @@ type (
/// 查询章节ID /// 查询章节ID
GetUsermainLineData(uid string) (mainlineId int32) GetUsermainLineData(uid string) (mainlineId int32)
///红点 ///红点
IReddot Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool
} }
//任务 //任务
ITask interface { ITask interface {
@ -149,7 +149,7 @@ type (
// 获取已完成的任务列表 // 获取已完成的任务列表
GetTaskFinished(uid string, taskType TaskTag) []*pb.DBTask GetTaskFinished(uid string, taskType TaskTag) []*pb.DBTask
///红点 ///红点
IReddot Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool
} }
// 随机任务 // 随机任务
@ -215,7 +215,7 @@ type (
ModifyPagodaFloor(session IUserSession, level int32) (code pb.ErrorCode) ModifyPagodaFloor(session IUserSession, level int32) (code pb.ErrorCode)
CheckUserBasePagodaInfo(uid string) (data *pb.DBPagodaRecord) // 查询玩家最佳通关记录 CheckUserBasePagodaInfo(uid string) (data *pb.DBPagodaRecord) // 查询玩家最佳通关记录
///红点 ///红点
IReddot Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool
} }
IHeroFetter interface { IHeroFetter interface {
@ -244,14 +244,14 @@ type (
// 获取公会成员 // 获取公会成员
MembersBySociatyId(sociatyId string) (list []*pb.SociatyMemberInfo) MembersBySociatyId(sociatyId string) (list []*pb.SociatyMemberInfo)
///红点 ///红点
IReddot Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool
} }
//星座图 //星座图
IHoroscope interface { IHoroscope interface {
//计算新作图属性 //计算新作图属性
ComputeHeroNumeric(uid string, hero ...*pb.DBHero) ComputeHeroNumeric(uid string, hero ...*pb.DBHero)
///红点 ///红点
IReddot Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool
} }
IPrivilege interface { IPrivilege interface {
// 创建一个新的特权卡 // 创建一个新的特权卡
@ -266,7 +266,7 @@ type (
//武馆 //武馆
IMartialhall interface { IMartialhall interface {
///红点 ///红点
IReddot Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool
} }
// 世界任务 // 世界任务
IWorldtask interface { IWorldtask interface {