audit.go 458 B

12345678910111213141516171819
  1. package model
  2. // Audit member audit info
  3. type Audit struct {
  4. Mid int64 `json:"mid"`
  5. BindTel bool `json:"bind_tel"`
  6. BindMail bool `json:"bind_mail"`
  7. Rank int64 `json:"rank"`
  8. Blocked bool `json:"blocked"`
  9. }
  10. // PassportDetail passportDetail
  11. type PassportDetail struct {
  12. Mid int64 `json:"mid"`
  13. Email string `json:"email"`
  14. Phone string `json:"telphone"`
  15. Spacesta int8 `json:"spacesta"`
  16. JoinTime int64 `json:"join_time"`
  17. }