Explorar el Código

更新

tags/v1.6.1^2
huangjiajun hace 1 año
padre
commit
52520fb4ee
Se han modificado 1 ficheros con 12 adiciones y 1 borrados
  1. +12
    -1
      lib/fb_pay/fb_pay.go

+ 12
- 1
lib/fb_pay/fb_pay.go Ver fichero

@@ -20,7 +20,18 @@ func GetOrderQrcodeByVendorSn(vendorSn string) *RequestParameters {
rp.Method = OrderQrcode
return &rp
}

func GetRefundByVendorSn(vendorSn string) *RequestParameters {
var rp RequestParameters
rp.VendorSn = vendorSn
rp.Method = Refund
return &rp
}
func GetRefundQueryByVendorSn(vendorSn string) *RequestParameters {
var rp RequestParameters
rp.VendorSn = vendorSn
rp.Method = RefundQuery
return &rp
}
func GetAggregateCodeByVendorSn(vendorSn string) *RequestParameters {
var rp RequestParameters
rp.VendorSn = vendorSn


Cargando…
Cancelar
Guardar