contact.go 624 B

1234567891011121314151617181920212223242526272829303132
  1. package apis
  2. type ContactAddRequest struct {
  3. SelfId int64 `json:"self_id"`
  4. SelfName string `json:"self_name"`
  5. Addr string `json:"addr"`
  6. Phone string `json:"phone"`
  7. Email string `json:"email"`
  8. Id int64 `json:"id"`
  9. }
  10. type ContactAddReply struct {
  11. }
  12. type ContactInfoRequest struct {
  13. }
  14. type ContactInfoReply struct {
  15. Id int64 `json:"id"`
  16. Addr string `json:"addr"`
  17. Phone string `json:"phone"`
  18. Email string `json:"email"`
  19. }
  20. type ContactDelRequest struct {
  21. SelfId int64 `json:"self_id"`
  22. SelfName string `json:"self_name"`
  23. Id int64 `json:"id"`
  24. }
  25. type ContactDelReply struct {
  26. }