ticket.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package model
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. // Ticket ticket 表结构
  6. type Ticket struct {
  7. ID int64 `json:"id"`
  8. UID int64 `json:"uid"`
  9. OID int64 `json:"oid"`
  10. SID int64 `json:"sid"`
  11. Price int64 `json:"price"`
  12. Src int16 `json:"src"`
  13. Type int16 `json:"type"`
  14. Status int16 `json:"status"`
  15. Qr string `json:"qr"`
  16. RefID int64 `json:"ref_id"`
  17. SkuID int64 `json:"sku_id"`
  18. SeatID int64 `json:"seat_id"`
  19. Seat string `json:"seat"`
  20. RefundApplyTime xtime.Time `json:"refund_apply_time"`
  21. ETime xtime.Time `json:"etime"`
  22. CTime xtime.Time `json:"ctime"`
  23. MTime xtime.Time `json:"mtime"`
  24. }
  25. // TicketSend ticket_send 表结构
  26. type TicketSend struct {
  27. ID int64 `json:"id"`
  28. SID int64 `son:"sid"`
  29. SendTID int64 `json:"send_tid"`
  30. RecvTID int64 `json:"recv_tid"`
  31. SendUID int64 `json:"send_uid"`
  32. RecvUID int64 `json:"recv_uid"`
  33. RecvTel string `json:"recv_tel"`
  34. Status int16 `json:"status"`
  35. CTime xtime.Time `json:"ctime"`
  36. MTime xtime.Time `json:"mtime"`
  37. OID int64 `json:"oid"`
  38. }