profit_sharing

This commit is contained in:
gazebo
2020-02-04 09:21:05 +08:00
parent 3b1ef805b5
commit c5fb7146a8

View File

@@ -40,6 +40,9 @@ const (
TradeTypeNative = "NATIVE" TradeTypeNative = "NATIVE"
TradeTypeAPP = "APP" TradeTypeAPP = "APP"
TradeTypeMicroPay = "MICROPAY" TradeTypeMicroPay = "MICROPAY"
OptYes = "Y"
OptNo = "N"
) )
type API struct { type API struct {
@@ -151,6 +154,7 @@ type CreateOrderParam struct {
OpenID string `json:"openid,omitempty" xml:"openid,omitempty"` OpenID string `json:"openid,omitempty" xml:"openid,omitempty"`
Receipt string `json:"receipt,omitempty" xml:"receipt,omitempty"` Receipt string `json:"receipt,omitempty" xml:"receipt,omitempty"`
SceneInfo string `json:"scene_info,omitempty" xml:"scene_info,omitempty"` SceneInfo string `json:"scene_info,omitempty" xml:"scene_info,omitempty"`
ProfitSharing string `json:"profit_sharing,omitempty" xml:"profit_sharing,omitempty"`
} }
type CloseOrderParam struct { type CloseOrderParam struct {