wx.api 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. import "../base.api"
  2. import "./agent.api"
  3. type (
  4. // The response data of wx information | Wx信息
  5. WxInfo {
  6. BaseIDInfo
  7. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  8. Status *uint8 `json:"status,optional"`
  9. // 服务器id
  10. ServerId *uint64 `json:"serverId,optional"`
  11. // 服务器名称
  12. ServerName *string `json:"serverName,optional"`
  13. // 端口号
  14. Port *string `json:"port,optional"`
  15. // 进程号
  16. ProcessId *string `json:"processId,optional"`
  17. // 回调地址
  18. Callback *string `json:"callback,optional"`
  19. // 微信id
  20. Wxid *string `json:"wxid,optional"`
  21. // 微信账号
  22. Account *string `json:"account,optional"`
  23. // 微信昵称
  24. Nickname *string `json:"nickname,optional"`
  25. // 手机号
  26. Tel *string `json:"tel,optional"`
  27. // 微信头像
  28. HeadBig *string `json:"headBig,optional"`
  29. // 组织ID
  30. OrganizationId *uint64 `json:"organizationId,optional"`
  31. // 组织名称
  32. OrganizationName *string `json:"organizationName,optional"`
  33. // 模式ID
  34. AgentId *uint64 `json:"agentId,optional"`
  35. // 模式信息
  36. AgentInfo *AgentInfo `json:"agentInfo,optional"`
  37. }
  38. // The response data of wx list | Wx列表数据
  39. WxListResp {
  40. BaseDataInfo
  41. // Wx list data | Wx列表数据
  42. Data WxListInfo `json:"data"`
  43. }
  44. // Wx list data | Wx列表数据
  45. WxListInfo {
  46. BaseListInfo
  47. // The API list data | Wx列表数据
  48. Data []WxInfo `json:"data"`
  49. }
  50. // Get wx list request params | Wx列表请求参数
  51. WxListReq {
  52. PageInfo
  53. // 服务器id
  54. ServerId *uint64 `json:"serverId,optional"`
  55. // 租户id
  56. OrganizationId *uint64 `json:"organizationId,optional"`
  57. // 端口号
  58. Port *string `json:"port,optional"`
  59. // 进程号
  60. ProcessId *string `json:"processId,optional"`
  61. // 回调地址
  62. Callback *string `json:"callback,optional"`
  63. }
  64. // Wx information response | Wx信息返回体
  65. WxInfoResp {
  66. BaseDataInfo
  67. // Wx information | Wx数据
  68. Data WxInfo `json:"data"`
  69. }
  70. )
  71. @server(
  72. jwt: Auth
  73. group: Wx
  74. middleware: Authority
  75. )
  76. service Wechat {
  77. // Create wx information | 创建Wx
  78. @handler createWx
  79. post /wx/create (WxInfo) returns (BaseMsgResp)
  80. // Update wx information | 更新Wx
  81. @handler updateWx
  82. post /wx/update (WxInfo) returns (BaseMsgResp)
  83. // Delete wx information | 删除Wx信息
  84. @handler deleteWx
  85. post /wx/delete (IDsReq) returns (BaseMsgResp)
  86. // Get wx list | 获取Wx列表
  87. @handler getWxList
  88. post /wx/list (WxListReq) returns (WxListResp)
  89. // Get wx by ID | 通过ID获取Wx
  90. @handler getWxById
  91. post /wx (IDReq) returns (WxInfoResp)
  92. }