model.go 809 B

123456789101112131415161718192021222324252627282930313233
  1. package model
  2. import (
  3. v1 "go-common/app/service/main/account/api"
  4. )
  5. // VipInfo is the type alias v1.VipInfo
  6. // DEPRECATED: using v1.VipInfo
  7. type VipInfo = v1.VipInfo
  8. // Info is the type alias v1.Info
  9. // DEPRECATED: using v1.Info
  10. type Info = v1.Info
  11. // Profile is the type alias v1.Profile
  12. // DEPRECATED: using v1.Profile
  13. type Profile = v1.Profile
  14. // Card is the type alias v1.Card
  15. // DEPRECATED: using v1.Card
  16. type Card = v1.Card
  17. // PendantInfo is the type alias v1.PendantInfo
  18. // DEPRECATED: using v1.PendantInfo
  19. type PendantInfo = v1.PendantInfo
  20. // NameplateInfo is the type alias v1.NameplateInfo
  21. // DEPRECATED: using v1.NameplateInfo
  22. type NameplateInfo = v1.NameplateInfo
  23. // OfficialInfo is the type alias v1.OfficialInfo
  24. // DEPRECATED: using v1.OfficialInfo
  25. type OfficialInfo = v1.OfficialInfo