统一下单接口参数错误
Closed this issue · 1 comments
godtou commented
// UnifiedOrder 统一下单参数
type UnifiedOrder struct {
DeviceInfo string `json:"device_info,omitempty"` // 自定义参数,可以为终端设备号(门店号或收银设备ID)
Body string `json:"body,omitempty"` // 商品简单描述,该字段请按照规范传递
Detail *UnifiedOrderDetail `json:"detail,omitempty"` // 商品详情
Attach string `json:"attach,omitempty"` // 附加数据,在查询API和支付通知中原样返回,可作为自定义参数使用。
OutTradeNo string `json:"out_trade_no,omitempty"` // 商户系统内部订单号
FeeType string `json:"fee_type,omitempty"` // 币种,默认人民币:CNY
TotalFee int `json:"total_fee,omitempty"` // 订单总金额,单位为分
SpbillCreateIP string `json:"spbill_create_ip,omitempty"` // 支持IPV4和IPV6两种格式的IP地址。用户的客户端IP
TimeStart string `json:"time_start,omitempty"` // 订单生成时间
TimeEnd string `json:"time_end,omitempty"` // 订单失效时间
GoodsTag string `json:"goods_tag,omitempty"` // 订单优惠标记
NotifyURL string `json:"notify_url,omitempty"` // 支付结果通知的回调地址
TradeType string `json:"trade_type,omitempty"` // JSAPI/NATIVE/APP
ProductID string `json:"product_id,omitempty"` // 商品ID trade_type=NATIVE时,此参数必传。
LimitPay string `json:"limit_pay,omitempty"` // no_credit--可限制用户不能使用信用卡支付
OpenID string `json:"openid,omitempty"` // 微信用户标识 trade_type=JSAPI时,此参数必传
SubOpenid string `json:"sub_openid,omitempty"` // 用户在子商户appid下的唯一标识。openid和sub_openid可以选传其中之一,如果选择传sub_openid,则必须传sub_appid
Receipt string `json:"receipt,omitempty"` // Y/N 是否开启电子发票入口
SceneInfo *SceneInfo `json:"scene_info,omitempty"` // 场景信息
ProfitSharing string `json:"profit_sharing,omitempty"` // 是否分账 Y/N
}
https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=9_1
time_end => time_expire
wleven commented
v1.2.6 版本已修复