batch_msg.api 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. import "../base.api"
  2. type (
  3. // The data of batch msg information | BatchMsg信息
  4. BatchMsgInfo {
  5. BaseIDInfo
  6. // 状态 0 未开始 1 开始发送 2 发送完成 3 发送中止
  7. Status *uint8 `json:"status,optional"`
  8. // 批次号
  9. BatchNo *string `json:"batchNo,optional"`
  10. // 任务名称
  11. TaskName *string `json:"taskName,optional"`
  12. // 发送方微信ID
  13. Fromwxid *string `json:"fromwxid,optional"`
  14. // 内容
  15. Msg *string `json:"msg,optional"`
  16. // 发送规则 all 全部 tag1,tag2 按tag发送
  17. Tag *string `json:"tag,optional"`
  18. // 总数
  19. Total *int32 `json:"total,optional"`
  20. // 成功数量
  21. Success *int32 `json:"success,optional"`
  22. // 失败数量
  23. Fail *int32 `json:"fail,optional"`
  24. // 开始时间
  25. StartTime *int64 `json:"startTime,optional"`
  26. StartTimeStr *string `json:"startTimeStr,optional"`
  27. // 结束时间
  28. StopTime *int64 `json:"stopTime,optional"`
  29. // 发送时间
  30. SendTime *int64 `json:"sendTime,optional"`
  31. SendTimeStr *string `json:"sendTimeStr,optional"`
  32. // 标签列表
  33. Labels []string `json:"labels,optional"`
  34. }
  35. // The response data of batch msg list | BatchMsg列表数据
  36. BatchMsgListResp {
  37. BaseDataInfo
  38. // BatchMsg list data | BatchMsg列表数据
  39. Data BatchMsgListInfo `json:"data"`
  40. }
  41. // BatchMsg list data | BatchMsg列表数据
  42. BatchMsgListInfo {
  43. BaseListInfo
  44. // The API list data | BatchMsg列表数据
  45. Data []BatchMsgInfo `json:"data"`
  46. }
  47. // Get batch msg list request params | BatchMsg列表请求参数
  48. BatchMsgListReq {
  49. PageInfo
  50. // 批次号
  51. BatchNo *string `json:"batchNo,optional"`
  52. // 发送方微信ID
  53. Fromwxid *string `json:"fromwxid,optional"`
  54. // 内容
  55. Msg *string `json:"msg,optional"`
  56. // 任务名称
  57. TaskName *string `json:"taskName,optional"`
  58. }
  59. // BatchMsg information response | BatchMsg信息返回体
  60. BatchMsgInfoResp {
  61. BaseDataInfo
  62. // BatchMsg information | BatchMsg数据
  63. Data BatchMsgInfo `json:"data"`
  64. }
  65. )
  66. @server(
  67. jwt: Auth
  68. group: batch_msg
  69. middleware: Authority
  70. )
  71. service Wechat {
  72. // Create batch msg information | 创建BatchMsg
  73. @handler createBatchMsg
  74. post /batch_msg/create (BatchMsgInfo) returns (BaseMsgResp)
  75. // Update batch msg information | 更新BatchMsg
  76. @handler updateBatchMsg
  77. post /batch_msg/update (BatchMsgInfo) returns (BaseMsgResp)
  78. // Delete batch msg information | 删除BatchMsg信息
  79. @handler deleteBatchMsg
  80. post /batch_msg/delete (IDsReq) returns (BaseMsgResp)
  81. // Get batch msg list | 获取BatchMsg列表
  82. @handler getBatchMsgList
  83. post /batch_msg/list (BatchMsgListReq) returns (BatchMsgListResp)
  84. // Get batch msg by ID | 通过ID获取BatchMsg
  85. @handler getBatchMsgById
  86. post /batch_msg (IDReq) returns (BatchMsgInfoResp)
  87. }