This commit is contained in:
孟帅
2024-04-22 23:08:40 +08:00
parent 82483bd7b9
commit e144b12580
445 changed files with 17457 additions and 6708 deletions

View File

@@ -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:"修改时间"`
}