1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
昔念
2026-04-24 17:22:25 +08:00
parent 11bf46c7e4
commit 0ae65cee45
12 changed files with 132 additions and 75 deletions

View File

@@ -0,0 +1,36 @@
package service
import (
"blazing/cool"
"blazing/modules/config/model"
"github.com/gogf/gf/v2/frame/g"
)
type CollectPlanService struct {
*cool.Service
}
func NewCollectPlanService() *CollectPlanService {
return &CollectPlanService{
&cool.Service{
Model: model.NewCollectPlanConfig(),
ListQueryOp: &cool.QueryOp{
FieldEQ: []string{"is_enable", "id"},
AddOrderby: map[string]string{
"id": "asc",
},
},
PageQueryOp: &cool.QueryOp{
FieldEQ: []string{"is_enable", "id"},
KeyWordField: []string{"title", "description", "remark"},
AddOrderby: map[string]string{
"id": "asc",
},
ModifyResult: func(ctx g.Ctx, data interface{}) interface{} {
return data
},
},
},
}
}