beats.go 381 B

123456789101112131415
  1. package model
  2. import "time"
  3. // Beat ap_user_beats_info
  4. type Beat struct {
  5. ID int64 `json:"id"`
  6. UID int64 `json:"uid"`
  7. Content string `json:"content"`
  8. Status int `json:"status"`
  9. Operator string `json:"operator"`
  10. UpdateTime time.Time `json:"update_time"`
  11. Ctime time.Time `json:"ctime"`
  12. Mtime time.Time `json:"mtime"`
  13. }