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,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 // 修改时间
}