This commit is contained in:
孟帅
2024-07-21 22:21:02 +08:00
parent 7d8330f72f
commit a37d088360
440 changed files with 6303 additions and 3339 deletions

View File

@@ -1,5 +1,5 @@
// ================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// You can delete these comments if you wish manually maintain this interface file.
// ================================================================================
@@ -12,10 +12,15 @@ import (
type (
IView interface {
// GetBreadCrumb 前台系统-获取面包屑列表
GetBreadCrumb(ctx context.Context, in *model.ViewGetBreadCrumbInput) []model.ViewBreadCrumb
// GetTitle 前台系统-获取标题
GetTitle(ctx context.Context, in *model.ViewGetTitleInput) string
// RenderTpl 渲染指定模板页面
RenderTpl(ctx context.Context, tpl string, data ...model.View)
// Render 渲染默认模板页面
Render(ctx context.Context, data ...model.View)
// Error 自定义错误页面
Error(ctx context.Context, err error)
}
)