wx_card.api 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. import "../base.api"
  2. type (
  3. // The data of wx card information | WxCard信息
  4. WxCardInfo {
  5. BaseIDInfo
  6. // user表ID
  7. UserId *uint64 `json:"userId,optional"`
  8. // wx表ID
  9. WxUserId *uint64 `json:"wxUserId,optional"`
  10. // 头像
  11. Avatar *string `json:"avatar,optional"`
  12. // logo
  13. Logo *string `json:"logo,optional"`
  14. // 名称
  15. Name *string `json:"name,optional"`
  16. // 公司
  17. Company *string `json:"company,optional"`
  18. // 地址
  19. Address *string `json:"address,optional"`
  20. // 手机号
  21. Phone *string `json:"phone,optional"`
  22. // 公众号
  23. OfficialAccount *string `json:"officialAccount,optional"`
  24. // 微信号
  25. WechatAccount *string `json:"wechatAccount,optional"`
  26. // 邮箱
  27. Email *string `json:"email,optional"`
  28. // 聊天信息
  29. ApiBase *string `json:"apiBase,optional"`
  30. ApiKey *string `json:"apiKey,optional"`
  31. // AI信息
  32. AiInfo *string `json:"aiInfo,optional"`
  33. // 个人介绍
  34. Intro *string `json:"intro,optional"`
  35. }
  36. WxCardSimpleInfo {
  37. // 头像
  38. Avatar *string `json:"avatar,optional"`
  39. // 名称
  40. Name *string `json:"name,optional"`
  41. }
  42. // The response data of wx card list | WxCard列表数据
  43. WxCardListResp {
  44. BaseDataInfo
  45. // WxCard list data | WxCard列表数据
  46. Data WxCardListInfo `json:"data"`
  47. }
  48. // WxCard list data | WxCard列表数据
  49. WxCardListInfo {
  50. BaseListInfo
  51. // The API list data | WxCard列表数据
  52. Data []WxCardInfo `json:"data"`
  53. }
  54. // Get wx card list request params | WxCard列表请求参数
  55. WxCardListReq {
  56. PageInfo
  57. // 头像
  58. Avatar *string `json:"avatar,optional"`
  59. // logo
  60. Logo *string `json:"logo,optional"`
  61. // 名称
  62. Name *string `json:"name,optional"`
  63. }
  64. // WxCard information response | WxCard信息返回体
  65. WxCardInfoResp {
  66. BaseDataInfo
  67. // WxCard information | WxCard数据
  68. Data WxCardInfo `json:"data"`
  69. }
  70. )
  71. @server(
  72. jwt: Auth
  73. group: wxcard
  74. middleware: Miniprogram
  75. )
  76. service Wechat {
  77. // Get wx card by ID | 通过ID获取WxCard
  78. @handler getApiWxCardDetail
  79. post /api/card/detail (IDReq) returns (WxCardInfoResp)
  80. }
  81. @server(
  82. jwt: Auth
  83. group: wxcard
  84. middleware: Authority
  85. )
  86. service Wechat {
  87. // Create wx card information | 创建WxCard
  88. @handler createWxCard
  89. post /wx_card/create (WxCardInfo) returns (BaseMsgResp)
  90. // Update wx card information | 更新WxCard
  91. @handler updateWxCard
  92. post /wx_card/update (WxCardInfo) returns (BaseMsgResp)
  93. // Delete wx card information | 删除WxCard信息
  94. @handler deleteWxCard
  95. post /wx_card/delete (IDsReq) returns (BaseMsgResp)
  96. // Get wx card list | 获取WxCard列表
  97. @handler getWxCardList
  98. post /wx_card/list (WxCardListReq) returns (WxCardListResp)
  99. // Get wx card by ID | 通过ID获取WxCard
  100. @handler getWxCardById
  101. post /wx_card (IDReq) returns (WxCardInfoResp)
  102. }