achieve.go 204 B

123456789101112
  1. package model
  2. // Achieve is
  3. type Achieve struct {
  4. Award string `json:"award"`
  5. Mid int64 `json:"mid"`
  6. }
  7. // AchieveGetReply is
  8. type AchieveGetReply struct {
  9. AwardToken string `json:"award_token"`
  10. }