dialog.go 885 B

123456789101112131415161718192021222324252627282930
  1. package model
  2. import "go-common/library/time"
  3. // OrderResult order result.
  4. type OrderResult struct {
  5. OrderNo string `json:"order_no"`
  6. Status int8 `json:"status"`
  7. Dialog *ConfDialog `json:"dialog,omitempty"`
  8. }
  9. // ConfDialog .
  10. type ConfDialog struct {
  11. ID int64 `json:"-"`
  12. AppID int64 `json:"app_id"`
  13. Platform int64 `json:"platform"`
  14. StartTime time.Time `json:"-"`
  15. EndTime time.Time `json:"-"`
  16. Title string `json:"title"`
  17. Content string `json:"content"`
  18. Follow bool `json:"follow"`
  19. LeftButton string `json:"left_button"`
  20. LeftLink string `json:"left_link"`
  21. RightButton string `json:"right_button"`
  22. RightLink string `json:"right_link"`
  23. Operator string `json:"-"`
  24. Stage bool `json:"stage"`
  25. Ctime time.Time `json:"-"`
  26. Mtime time.Time `json:"-"`
  27. }