57 lines
1.6 KiB
Go
57 lines
1.6 KiB
Go
package schema
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/guxuan/hailin_service/internal/config"
|
|
"github.com/guxuan/hailin_service/pkg/util"
|
|
)
|
|
|
|
// Menu resource management for RBAC
|
|
type MenuResource struct {
|
|
ID string `json:"id" gorm:"size:20;primarykey"` // Unique ID
|
|
MenuID string `json:"menu_id" gorm:"size:20;index"` // From Menu.ID
|
|
Method string `json:"method" gorm:"size:20;"` // HTTP method
|
|
Path string `json:"path" gorm:"size:255;"` // API request path (e.g. /api/v1/users/:id)
|
|
CreatedAt time.Time `json:"created_at" gorm:"index;"` // Create time
|
|
UpdatedAt time.Time `json:"updated_at" gorm:"index;"` // Update time
|
|
}
|
|
|
|
func (a *MenuResource) TableName() string {
|
|
return config.C.FormatTableName("menu_resource")
|
|
}
|
|
|
|
// Defining the query parameters for the `MenuResource` struct.
|
|
type MenuResourceQueryParam struct {
|
|
util.PaginationParam
|
|
MenuID string `form:"-"` // From Menu.ID
|
|
MenuIDs []string `form:"-"` // From Menu.ID
|
|
}
|
|
|
|
// Defining the query options for the `MenuResource` struct.
|
|
type MenuResourceQueryOptions struct {
|
|
util.QueryOptions
|
|
}
|
|
|
|
// Defining the query result for the `MenuResource` struct.
|
|
type MenuResourceQueryResult struct {
|
|
Data MenuResources
|
|
PageResult *util.PaginationResult
|
|
}
|
|
|
|
// Defining the slice of `MenuResource` struct.
|
|
type MenuResources []*MenuResource
|
|
|
|
// Defining the data structure for creating a `MenuResource` struct.
|
|
type MenuResourceForm struct {
|
|
}
|
|
|
|
// A validation function for the `MenuResourceForm` struct.
|
|
func (a *MenuResourceForm) Validate() error {
|
|
return nil
|
|
}
|
|
|
|
func (a *MenuResourceForm) FillTo(menuResource *MenuResource) error {
|
|
return nil
|
|
}
|