2026-02-24 12:53:07 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"blazing/cool"
|
|
|
|
|
"blazing/modules/config/model"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type MapPitService struct {
|
|
|
|
|
*cool.Service
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewMapPitService() *MapPitService {
|
|
|
|
|
return &MapPitService{
|
|
|
|
|
&cool.Service{
|
|
|
|
|
Model: model.NewMapPit(),
|
|
|
|
|
PageQueryOp: &cool.QueryOp{
|
|
|
|
|
KeyWordField: []string{"remake"},
|
2026-02-24 19:20:38 +08:00
|
|
|
FieldEQ: []string{"map_id"},
|
2026-02-24 12:53:07 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|