This commit is contained in:
ziming 2025-05-21 11:51:12 +08:00
parent e9a754e08a
commit 13cd99300f
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@ import "voucher/internal/biz/vo"
// ConsumeInformation 定义消费信息结构体 // ConsumeInformation 定义消费信息结构体
type ConsumeInformation struct { type ConsumeInformation struct {
ConsumeTime string `json:"consume_time"` ConsumeTime string `json:"consume_time"` // 代金券核销时间遵循rfc3339标准格式格式为yyyy-MM-DDTHH:mm:ss+TIMEZONE
ConsumeMchid string `json:"consume_mchid"` ConsumeMchid string `json:"consume_mchid"` // 核销代金券的商户号
TransactionID string `json:"transaction_id"` TransactionID string `json:"transaction_id"` // 微信支付系统生成的订单号
ConsumeAmount int64 `json:"consume_amount,omitempty"` // 核销金额仅有当business_type=MULTIUSE时才会返回。单位 ConsumeAmount int64 `json:"consume_amount,omitempty"` // 核销金额仅有当business_type=MULTIUSE时才会返回。单位
} }