handler.go 664 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package model
  2. import "go-common/library/time"
  3. //HandlerVip vip handler
  4. type HandlerVip struct {
  5. Days int32
  6. Months int16
  7. Mid int64
  8. Type int8
  9. }
  10. //AppCache appCache
  11. type AppCache struct {
  12. AppID int64 `json:"appID"`
  13. Mid int64 `json:"mid"`
  14. }
  15. //BcoinSendInfo .
  16. type BcoinSendInfo struct {
  17. Amount int32 `json:"amount"`
  18. DueDate time.Time `json:"dueDate"`
  19. DayOfMonth int `json:"dayOfMonth"`
  20. }
  21. //VipBuyResq .
  22. type VipBuyResq struct {
  23. Mid int64 `json:"mid"`
  24. CouponID string `json:"coupon_id"`
  25. OrderNo string `json:"order_no"`
  26. }
  27. //VipPushResq .
  28. type VipPushResq struct {
  29. Code int64 `json:"code"`
  30. Data int64 `json:"data"`
  31. }