payShield.go 226 B

12345678910111213141516171819
  1. package model
  2. // IPListDetail .
  3. type IPListDetail struct {
  4. IP string
  5. Num int64
  6. }
  7. // UIDListDetail .
  8. type UIDListDetail struct {
  9. UID string
  10. Num int64
  11. }
  12. // ListDetail .
  13. type ListDetail struct {
  14. IP string
  15. UID string
  16. }