yuleduiPay/service/vo/mqtt.go

16 lines
760 B
Go
Raw Normal View History

2024-11-05 17:34:58 +08:00
package vo
type MQTTOrder struct {
2024-11-06 15:15:45 +08:00
Topic string `json:"topic"` //主题
MsgId string `json:"msgId"` //消息ID
2024-11-05 17:34:58 +08:00
OrderId string `json:"orderId"` //订单号
OrderEndTime int64 `json:"orderEndTime"` //支付完成时间unix时间戳
Price string `json:"price"` //订单原价小数点后6位
Amount string `json:"amount"` //支付金额小数点后6位
Bean string `json:"bean"` //抵扣金豆
2024-11-06 15:15:45 +08:00
ShopId string `json:"shopId"` //店铺ID
2024-11-05 17:34:58 +08:00
OpenId string `json:"openId"` //微信用户openId
Mobile string `json:"mobile"` //付款用户手机号
2024-11-06 15:15:45 +08:00
SendTime int64 `json:"sendTime"` //发送消息时间,unix时间戳
2024-11-05 17:34:58 +08:00
}