package service import ( "blazing/cool" "blazing/modules/config/model" ) type MapBossService struct { *cool.Service } func NewMapBossService() *MapBossService { return &MapBossService{ &cool.Service{ Model: model.NewMapNode(), PageQueryOp: &cool.QueryOp{ KeyWordField: []string{"remake"}, FieldEQ: []string{"map_id"}, }, }, } }