-
Notifications
You must be signed in to change notification settings - Fork 174
/
app.go
50 lines (43 loc) · 2.05 KB
/
app.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package request
type AppAmount struct {
Total int `json:"total"` // 总金额
Currency string `json:"currency"` // 货币类型
}
type AppGoodsDetail struct {
MerchantGoodsID string `json:"merchant_goods_id"` // 商户侧商品编码
WechatPayGoodsID string `json:"wechatpay_goods_id"` // 微信侧商品编码
GoodsName string `json:"goods_name"` // 商品名称
Quantity int `json:"quantity"` // 商品数量
UnitPrice int `json:"unit_price"` // 商品单价
}
type AppDetail struct {
CostPrice int `json:"cost_price"` // 订单原价
InvoiceID string `json:"invoice_id"` // 商品小票ID
GoodsDetail []AppGoodsDetail `json:"goods_detail"` // + 单品列表
}
type AppStoreInfo struct {
ID string `json:"id"` // 门店编号
Name string `json:"name"` // 门店名称
AreaCode string `json:"area_code"` // 地区编码
Address string `json:"address"` // 详细地址
}
type AppSceneInfo struct {
PayerClientIP string `json:"payer_client_ip"` // 用户终端IP
DeviceID string `json:"device_id"` // 商户端设备号
StoreInfo AppStoreInfo `json:"store_info"` // + 商户门店信息
}
type AppSettleInfo struct {
ProfitSharing bool `json:"profit_sharing"` // 是否指定分账
}
type RequestAppPrepay struct {
PrepayBase
Description string `json:"description"` // 商品描述
OutTradeNo string `json:"out_trade_no"` // 商户订单号
TimeExpire string `json:"time_expire,omitempty"` // 交易结束时间
Attach string `json:"attach"` // 附加数据
GoodsTag string `json:"goods_tag,omitempty"` // 订单优惠标记
Amount *AppAmount `json:"amount"` // 订单金额
Detail *AppDetail `json:"detail,omitempty"` // 优惠功能
SceneInfo *AppSceneInfo `json:"scene_info,omitempty"` // 场景信息
SettleInfo *AppSettleInfo `json:"settle_info,omitempty"` // 结算信息
}