Files
novel/internal/model/entity/permission_info.go
2024-01-15 17:30:07 +08:00

20 lines
760 B
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// PermissionInfo is the golang structure for table permission_info.
type PermissionInfo struct {
Id int `json:"id" description:""`
Name string `json:"name" description:"权限名称"`
Path string `json:"path" description:"路径"`
CreatedAt *gtime.Time `json:"createdAt" description:""`
UpdatedAt *gtime.Time `json:"updatedAt" description:""`
DeletedAt *gtime.Time `json:"deletedAt" description:""`
}