feat(config): 添加服务器调试模式配置和塔配置重构 - 在ServerList结构体中添加IsDebug字段用于调试模式标识 - 修改GetServerInfoList函数增加isdebug参数支持 - 移除硬编码的rpcaddr本地地址配置 - 重构塔配置模型,将tower_500和tower_600合并到tower_110
65 lines
1.1 KiB
Go
65 lines
1.1 KiB
Go
package service
|
|
|
|
import (
|
|
"blazing/cool"
|
|
"blazing/modules/config/model"
|
|
|
|
"github.com/gogf/gf/v2/database/gdb"
|
|
)
|
|
|
|
type TaskService struct {
|
|
*cool.Service
|
|
}
|
|
|
|
func NewTaskService() *TaskService {
|
|
return &TaskService{
|
|
&cool.Service{
|
|
Model: model.NewTaskConfig(),
|
|
PageQueryOp: &cool.QueryOp{
|
|
FieldEQ: []string{"task_type"},
|
|
},
|
|
//UniqueKey: map[string]string{"task_id": "索引不能重复"},
|
|
},
|
|
}
|
|
}
|
|
func (s *TaskService) Get(id, os uint32) *model.TaskConfig {
|
|
var item []model.TaskConfig
|
|
dbm(s.Model).Where("task_id", id).Scan(&item)
|
|
var res *model.TaskConfig
|
|
if len(item) == 1 { //只有一个直接默认
|
|
if item[0].OutState == os {
|
|
res = &item[0]
|
|
}
|
|
if item[0].OutState < 10 {
|
|
res = &item[0]
|
|
}
|
|
|
|
}
|
|
if len(item) > 1 { //
|
|
|
|
for _, v := range item {
|
|
if v.OutState == os {
|
|
res = &item[os]
|
|
return res
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
func (s *TaskService) GetDaily() []model.TaskConfig {
|
|
var item []model.TaskConfig
|
|
cool.DBM(s.Model).Where("task_type", 1).
|
|
Cache(gdb.CacheOption{
|
|
// Duration: time.Hour,
|
|
|
|
Force: false,
|
|
}).Scan(&item)
|
|
|
|
return item
|
|
|
|
}
|