mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-14 05:03:49 +08:00
发布v2.15.1版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -14,6 +14,9 @@ import (
|
||||
type AddonHgexampleTable struct {
|
||||
g.Meta `orm:"table:hg_addon_hgexample_table, do:true"`
|
||||
Id interface{} // ID
|
||||
Pid interface{} // 上级ID
|
||||
Level interface{} // 树等级
|
||||
Tree interface{} // 关系树
|
||||
CategoryId interface{} // 分类ID
|
||||
Flag *gjson.Json // 标签
|
||||
Title interface{} // 标题
|
||||
@@ -40,9 +43,6 @@ type AddonHgexampleTable struct {
|
||||
Hobby *gjson.Json // 爱好
|
||||
Channel interface{} // 渠道
|
||||
CityId interface{} // 所在城市
|
||||
Pid interface{} // 上级ID
|
||||
Level interface{} // 树等级
|
||||
Tree interface{} // 关系树
|
||||
Remark interface{} // 备注
|
||||
Status interface{} // 状态
|
||||
CreatedBy interface{} // 创建者
|
||||
|
||||
26
server/internal/model/do/addon_hgexample_tenant_order.go
Normal file
26
server/internal/model/do/addon_hgexample_tenant_order.go
Normal file
@@ -0,0 +1,26 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// AddonHgexampleTenantOrder is the golang structure of table hg_addon_hgexample_tenant_order for DAO operations like Where/Data.
|
||||
type AddonHgexampleTenantOrder struct {
|
||||
g.Meta `orm:"table:hg_addon_hgexample_tenant_order, do:true"`
|
||||
Id interface{} // 主键
|
||||
TenantId interface{} // 租户ID
|
||||
MerchantId interface{} // 商户ID
|
||||
UserId interface{} // 用户ID
|
||||
ProductName interface{} // 购买产品
|
||||
OrderSn interface{} // 订单号
|
||||
Money interface{} // 充值金额
|
||||
Remark interface{} // 备注
|
||||
Status interface{} // 订单状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
}
|
||||
29
server/internal/model/do/sys_gen_tree_demo.go
Normal file
29
server/internal/model/do/sys_gen_tree_demo.go
Normal file
@@ -0,0 +1,29 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysGenTreeDemo is the golang structure of table hg_sys_gen_tree_demo for DAO operations like Where/Data.
|
||||
type SysGenTreeDemo struct {
|
||||
g.Meta `orm:"table:hg_sys_gen_tree_demo, do:true"`
|
||||
Id interface{} // ID
|
||||
Pid interface{} // 上级ID
|
||||
Level interface{} // 关系树级别
|
||||
Tree interface{} // 关系树
|
||||
CategoryId interface{} // 分类ID
|
||||
Title interface{} // 标题
|
||||
Description interface{} // 描述
|
||||
Sort interface{} // 排序
|
||||
Status interface{} // 状态
|
||||
CreatedBy interface{} // 创建者
|
||||
UpdatedBy interface{} // 更新者
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
DeletedAt *gtime.Time // 删除时间
|
||||
}
|
||||
@@ -12,16 +12,19 @@ import (
|
||||
|
||||
// SysLoginLog is the golang structure of table hg_sys_login_log for DAO operations like Where/Data.
|
||||
type SysLoginLog struct {
|
||||
g.Meta `orm:"table:hg_sys_login_log, do:true"`
|
||||
Id interface{} // 日志ID
|
||||
ReqId interface{} // 请求ID
|
||||
MemberId interface{} // 用户ID
|
||||
Username interface{} // 用户名
|
||||
Response *gjson.Json // 响应数据
|
||||
LoginAt *gtime.Time // 登录时间
|
||||
LoginIp interface{} // 登录IP
|
||||
ErrMsg interface{} // 错误提示
|
||||
Status interface{} // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
g.Meta `orm:"table:hg_sys_login_log, do:true"`
|
||||
Id interface{} // 日志ID
|
||||
ReqId interface{} // 请求ID
|
||||
MemberId interface{} // 用户ID
|
||||
Username interface{} // 用户名
|
||||
Response *gjson.Json // 响应数据
|
||||
LoginAt *gtime.Time // 登录时间
|
||||
LoginIp interface{} // 登录IP
|
||||
ProvinceId interface{} // 省编码
|
||||
CityId interface{} // 市编码
|
||||
UserAgent interface{} // UA信息
|
||||
ErrMsg interface{} // 错误提示
|
||||
Status interface{} // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@ type TestCategory struct {
|
||||
g.Meta `orm:"table:hg_test_category, do:true"`
|
||||
Id interface{} // 分类ID
|
||||
Name interface{} // 分类名称
|
||||
ShortName interface{} // 简称
|
||||
Description interface{} // 描述
|
||||
Sort interface{} // 排序
|
||||
Remark interface{} // 备注
|
||||
|
||||
Reference in New Issue
Block a user