This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -12,15 +12,15 @@ import (
// 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{} // 订单状态
Id any // 主键
TenantId any // 租户ID
MerchantId any // 商户ID
UserId any // 用户ID
ProductName any // 购买产品
OrderSn any // 订单号
Money any // 充值金额
Remark any // 备注
Status any // 订单状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}