old_account.go 399 B

123456789101112131415161718192021
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. //MemberVerify is.
  6. type MemberVerify struct {
  7. Mid int64 `json:"mid"`
  8. Type int64 `json:"type"`
  9. Desc string `json:"desc"`
  10. }
  11. //AccountInfo is.
  12. type AccountInfo struct {
  13. Mid int64 `json:"mid"`
  14. Name string `json:"name"`
  15. Cert int64 `json:"cert"`
  16. CertDesc string `json:"certdesc"`
  17. Ts time.Time `json:"ts"`
  18. }