| 123456789101112131415161718192021222324252627 |
- package role
- import (
- "git.sxidc.com/go-framework/baize/convenient/entity_crud"
- "git.sxidc.com/go-framework/baize/framework/binding"
- )
- // Simple Bind参数
- type Simple struct {
- // schema
- Schema string
- // 鉴权中间件
- AuthMiddleware binding.Middleware
- }
- func (simple *Simple) Bind(binder *binding.Binder) {
- entity_crud.BindSimple(binder, &entity_crud.Simple[Info]{
- Entity: &Entity{},
- Schema: simple.Schema,
- CreateJsonBody: &CreateRoleJsonBody{},
- DeleteQueryParams: &DeleteRoleQueryParams{},
- UpdateJsonBody: &UpdateRoleJsonBody{},
- QueryQueryParams: &GetRolesQueryParams{},
- GetByIDQueryParams: &GetRoleQueryParams{},
- }, entity_crud.WithGlobalMiddlewares(simple.AuthMiddleware))
- }
|