contact.api 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import "../base.api"
  2. import "./label_relationship.api"
  3. type (
  4. // The response data of contact list | Contact列表数据
  5. ContactListResp {
  6. BaseDataInfo
  7. // Contact list data | Contact列表数据
  8. Data ContactListInfo `json:"data"`
  9. }
  10. // Contact list data | Contact列表数据
  11. ContactListInfo {
  12. BaseListInfo
  13. // The API list data | Contact列表数据
  14. Data []ContactInfo `json:"data"`
  15. }
  16. // Get contact list request params | Contact列表请求参数
  17. ContactListReq {
  18. PageInfo
  19. // Label ID list | 标签ID列表
  20. LabelIDs []uint64 `json:"labelIDs,optional"`
  21. // 属主微信id
  22. WxWxid *string `json:"wxWxid,optional"`
  23. // 微信id 公众号微信ID
  24. Wxid *string `json:"wxid,optional"`
  25. // 微信账号
  26. Account *string `json:"account,optional"`
  27. }
  28. // Contact information response | Contact信息返回体
  29. ContactInfoResp {
  30. BaseDataInfo
  31. // Contact information | Contact数据
  32. Data ContactInfo `json:"data"`
  33. }
  34. )
  35. @server(
  36. jwt: Auth
  37. group: contact
  38. middleware: Authority
  39. )
  40. service Wechat {
  41. // Create contact information | 创建Contact
  42. @handler createContact
  43. post /contact/create (ContactInfo) returns (BaseMsgResp)
  44. // Update contact information | 更新Contact
  45. @handler updateContact
  46. post /contact/update (ContactInfo) returns (BaseMsgResp)
  47. // Delete contact information | 删除Contact信息
  48. @handler deleteContact
  49. post /contact/delete (IDsReq) returns (BaseMsgResp)
  50. // Get contact list | 获取Contact列表
  51. @handler getContactList
  52. post /contact/list (ContactListReq) returns (ContactListResp)
  53. // Get contact by ID | 通过ID获取Contact
  54. @handler getContactById
  55. post /contact (IDReq) returns (ContactInfoResp)
  56. }