model.go 322 B

1234567891011121314151617181920212223242526
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // MemberBase is
  6. type MemberBase struct {
  7. Mid int64
  8. Name string
  9. Sex int64
  10. Face string
  11. Sign string
  12. Rank int64
  13. Birthday time.Time
  14. }
  15. // Names is
  16. type Names struct {
  17. Names map[int64]string
  18. }
  19. // Mids is
  20. type Mids struct {
  21. Mids []int64
  22. }