mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-11 19:53:55 +08:00
发布v2.18.6版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -12,16 +12,16 @@ import (
|
||||
// AdminOrder is the golang structure of table hg_admin_order for DAO operations like Where/Data.
|
||||
type AdminOrder struct {
|
||||
g.Meta `orm:"table:hg_admin_order, do:true"`
|
||||
Id interface{} // 主键
|
||||
MemberId interface{} // 管理员id
|
||||
OrderType interface{} // 订单类型
|
||||
ProductId interface{} // 产品id
|
||||
OrderSn interface{} // 关联订单号
|
||||
Money interface{} // 充值金额
|
||||
Remark interface{} // 备注
|
||||
RefundReason interface{} // 退款原因
|
||||
RejectRefundReason interface{} // 拒绝退款原因
|
||||
Status interface{} // 状态
|
||||
Id any // 主键
|
||||
MemberId any // 管理员id
|
||||
OrderType any // 订单类型
|
||||
ProductId any // 产品id
|
||||
OrderSn any // 关联订单号
|
||||
Money any // 充值金额
|
||||
Remark any // 备注
|
||||
RefundReason any // 退款原因
|
||||
RejectRefundReason any // 拒绝退款原因
|
||||
Status any // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user