point.go 646 B

1234567891011121314151617181920212223242526
  1. package bws
  2. import "go-common/library/time"
  3. // UserPoint .
  4. type UserPoint struct {
  5. ID int64 `json:"id"`
  6. Pid int64 `json:"pid"`
  7. Points int64 `json:"points"`
  8. Ctime time.Time `json:"ctime"`
  9. }
  10. // UserPointDetail .
  11. type UserPointDetail struct {
  12. *UserPoint
  13. Name string `json:"name"`
  14. Icon string `json:"icon"`
  15. Fid int64 `json:"fid"`
  16. Image string `json:"image"`
  17. Unlocked int64 `json:"unlocked"`
  18. LoseUnlocked int64 `json:"lose_unlocked"`
  19. LockType int64 `json:"lockType"`
  20. Dic string `json:"dic"`
  21. Rule string `json:"rule"`
  22. Bid int64 `json:"bid"`
  23. }