mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-11 03:33:53 +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:
24
server/internal/model/entity/addon_hgexample_tenant_order.go
Normal file
24
server/internal/model/entity/addon_hgexample_tenant_order.go
Normal file
@@ -0,0 +1,24 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// AddonHgexampleTenantOrder is the golang structure for table addon_hgexample_tenant_order.
|
||||
type AddonHgexampleTenantOrder struct {
|
||||
Id int64 `json:"id" orm:"id" description:"主键"`
|
||||
TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户ID"`
|
||||
MerchantId int64 `json:"merchantId" orm:"merchant_id" description:"商户ID"`
|
||||
UserId int64 `json:"userId" orm:"user_id" description:"用户ID"`
|
||||
ProductName string `json:"productName" orm:"product_name" description:"购买产品"`
|
||||
OrderSn string `json:"orderSn" orm:"order_sn" description:"订单号"`
|
||||
Money float64 `json:"money" orm:"money" description:"充值金额"`
|
||||
Remark string `json:"remark" orm:"remark" description:"备注"`
|
||||
Status int `json:"status" orm:"status" description:"订单状态"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"创建时间"`
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"修改时间"`
|
||||
}
|
||||
Reference in New Issue
Block a user