上传剧情活动类型定义

This commit is contained in:
liwei 2023-08-07 09:52:16 +08:00
parent 0c22ebdf7b
commit c51e726398
2 changed files with 2 additions and 1 deletions

View File

@ -100,6 +100,7 @@ const (
ModuleHeroTask core.M_Modules = "herotask" //守护者任务 ModuleHeroTask core.M_Modules = "herotask" //守护者任务
ModuleShopCenter core.M_Modules = "shopcenter" //购物中心 ModuleShopCenter core.M_Modules = "shopcenter" //购物中心
ModuleAddrecharge core.M_Modules = "addrecharge" //累充系统 ModuleAddrecharge core.M_Modules = "addrecharge" //累充系统
ModuleStoryLine core.M_Modules = "storyline" //剧情活动
) )
// 数据表名定义处 // 数据表名定义处

View File

@ -20,7 +20,7 @@ func NewModule() core.IModule {
} }
func (this *StoryLine) GetType() core.M_Modules { func (this *StoryLine) GetType() core.M_Modules {
return comm.ModuleKFTask return comm.ModuleStoryLine
} }
func (this *StoryLine) Init(service core.IService, module core.IModule, options core.IModuleOptions) (err error) { func (this *StoryLine) Init(service core.IService, module core.IModule, options core.IModuleOptions) (err error) {