接口调整
This commit is contained in:
parent
08a8764fe6
commit
65b97a090e
@ -36,7 +36,7 @@ type (
|
||||
CheckTaskCond(session IUserSession, id int32)
|
||||
CheckMlineCond(session IUserSession, id int32)
|
||||
// 查询opencond 配置
|
||||
GetOpenCondCfgById(id string) (data *cfg.GameOpencondData, err error)
|
||||
GetOpenCondCfgById(uid string, id string) (bOpen bool, errdata *pb.ErrorData)
|
||||
}
|
||||
|
||||
//邮件业务模块对外接口定义 提供给其他模块使用的
|
||||
|
@ -95,6 +95,20 @@ func (this *ModuleSys) AutoActivate(session comm.IUserSession, cids []string) bo
|
||||
return true
|
||||
}
|
||||
|
||||
func (this *ModuleSys) GetOpenCondCfgById(id string) (data *cfg.GameOpencondData, err error) {
|
||||
return this.configure.GetOpenCondCfgById(id)
|
||||
func (this *ModuleSys) GetOpenCondCfgById(uid string, id string) (bOpen bool, errdata *pb.ErrorData) {
|
||||
|
||||
conf, err := this.configure.GetOpenCondCfgById(id)
|
||||
if err != nil {
|
||||
bOpen = false
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ConfigNoFound,
|
||||
Title: pb.ErrorCode_ConfigNoFound.ToString(),
|
||||
Message: err.Error(),
|
||||
}
|
||||
return
|
||||
}
|
||||
if this.ValidCond(uid, conf) != "" {
|
||||
bOpen = true
|
||||
}
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user