mirror of
https://github.com/bufanyun/hotgo.git
synced 2026-04-27 21:44:27 +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:
@@ -10,16 +10,16 @@ import (
|
||||
|
||||
// AdminOrder is the golang structure for table admin_order.
|
||||
type AdminOrder struct {
|
||||
Id int64 `json:"id" description:"主键"`
|
||||
MemberId int64 `json:"memberId" description:"管理员id"`
|
||||
OrderType string `json:"orderType" description:"订单类型"`
|
||||
ProductId int64 `json:"productId" description:"产品id"`
|
||||
OrderSn string `json:"orderSn" description:"关联订单号"`
|
||||
Money float64 `json:"money" description:"充值金额"`
|
||||
Remark string `json:"remark" description:"备注"`
|
||||
RefundReason string `json:"refundReason" description:"退款原因"`
|
||||
RejectRefundReason string `json:"rejectRefundReason" description:"拒绝退款原因"`
|
||||
Status int `json:"status" description:"状态"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" description:"修改时间"`
|
||||
Id int64 `json:"id" orm:"id" description:"主键"`
|
||||
MemberId int64 `json:"memberId" orm:"member_id" description:"管理员id"`
|
||||
OrderType string `json:"orderType" orm:"order_type" description:"订单类型"`
|
||||
ProductId int64 `json:"productId" orm:"product_id" description:"产品id"`
|
||||
OrderSn string `json:"orderSn" orm:"order_sn" description:"关联订单号"`
|
||||
Money float64 `json:"money" orm:"money" description:"充值金额"`
|
||||
Remark string `json:"remark" orm:"remark" description:"备注"`
|
||||
RefundReason string `json:"refundReason" orm:"refund_reason" description:"退款原因"`
|
||||
RejectRefundReason string `json:"rejectRefundReason" orm:"reject_refund_reason" 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