2026-02-24 22:58:58 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"blazing/cool"
|
|
|
|
|
"blazing/modules/config/model"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type MapBossService struct {
|
|
|
|
|
*cool.Service
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewMapBossService() *MapBossService {
|
|
|
|
|
return &MapBossService{
|
|
|
|
|
&cool.Service{
|
2026-02-25 13:20:38 +08:00
|
|
|
Model: model.NewMapNode(),
|
2026-02-24 22:58:58 +08:00
|
|
|
PageQueryOp: &cool.QueryOp{
|
|
|
|
|
KeyWordField: []string{"remake"},
|
|
|
|
|
FieldEQ: []string{"map_id"},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|