yuleduiPay/service/vo/mqtt.go

13 lines
576 B
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.

package vo
type MQTTOrder struct {
OrderId string `json:"orderId"` //订单号
OrderEndTime int64 `json:"orderEndTime"` //支付完成时间unix时间戳
Price string `json:"price"` //订单原价小数点后6位
Amount string `json:"amount"` //支付金额小数点后6位
Bean string `json:"bean"` //抵扣金豆
ShopId int64 `json:"shopId"` //店铺ID
OpenId string `json:"openId"` //微信用户openId
Mobile string `json:"mobile"` //付款用户手机号
}