voucher/internal/biz/do/product.go

23 lines
550 B
Go

package do
import "time"
type WxResp struct {
Amount int64 // 券面额
AllBudget int64 // 总预算
AllStock int64 // 总库存
UsedStock int64 // 已使用库存
UsedBudget int64 // 已使用预算
AvailableStock int64 // 可用库存
AvailableBudget int64 // 可用预算
StockUsageRate float64 // 券使用率
StartTime *time.Time
EndTime *time.Time
}
type WarningPerson struct {
Mobile string `json:"mobile"`
Name string `json:"name"`
Tag string `json:"tag"`
}