This commit is contained in:
2025-07-07 20:11:59 +08:00
parent ab0fdbc447
commit 06e3aa2eb3
2009 changed files with 193082 additions and 0 deletions

View File

@ -0,0 +1,29 @@
// ==========================================================================
// GFast自动生成model操作代码。
// 生成日期2024-05-28 15:09:13
// 生成路径: internal/app/system/model/app_menus.go
// 生成人gfast
// desc:app菜单
// company:云南奇讯科技有限公司
// ==========================================================================
package model
import (
"github.com/gogf/gf/v2/os/gtime"
"github.com/gogf/gf/v2/util/gmeta"
)
// AppMenusInfoRes is the golang structure for table app_menus.
type AppMenusInfoRes struct {
gmeta.Meta `orm:"table:app_menus"`
MenuId uint `orm:"menu_id,primary" json:"menuId"` //
MenuName string `orm:"menu_name" json:"menuName"` // 菜单名
CreatedAt *gtime.Time `orm:"created_at" json:"-"` //
}
type AppMenusListRes struct {
MenuId uint `json:"menuId"`
MenuName string `json:"menuName"`
CreatedAt *gtime.Time `json:"createdAt"`
}