yuleduiPay/service/po/pay_order.go

24 lines
1.2 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package po
import (
"github.com/gogf/gf/v2/os/gtime"
)
// PayOrder is the golang structure for table pay_order.
type PayOrder struct {
OrderId string `json:"orderId" orm:"order_id" ` // 订单ID主键
Price float64 `json:"price" orm:"price" ` // 订单原价
Amount float64 `json:"amount" orm:"amount" ` // 支付价格
Bean float64 `json:"bean" orm:"bean" ` // 金豆抵扣价格
OpenId string `json:"openId" orm:"open_id" ` // 支付用户微信openId
Mobile string `json:"mobile" orm:"mobile" ` // 支付用户手机号
ShopId string `json:"shopId" orm:"shop_id" ` // 商户ID
Created *gtime.Time `json:"created" orm:"created" ` // 创建时间
Updated *gtime.Time `json:"updated" orm:"updated" ` // 更新时间
YsepayStatus string `json:"ysepayStatus" orm:"ysepay_status" ` // 银盛交易状态
}