apply.go 260 B

1234567891011121314
  1. package model
  2. //Apply apply model
  3. type Apply struct {
  4. Verify bool `json:"verify"`
  5. Forbid bool `json:"forbid"`
  6. Phone int `json:"phone"`
  7. }
  8. // Identify user verify info.
  9. type Identify struct {
  10. Identify int `json:"identify"`
  11. Phone int `json:"phone"`
  12. }