wx.pb.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1-devel
  4. // protoc v3.21.8
  5. // source: wx.proto
  6. package wx
  7. import (
  8. account "git.ikuban.com/server/pw-protobuf/api/account"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  10. _ "google.golang.org/genproto/googleapis/api/annotations"
  11. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  12. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  13. emptypb "google.golang.org/protobuf/types/known/emptypb"
  14. reflect "reflect"
  15. sync "sync"
  16. )
  17. const (
  18. // Verify that this generated code is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  20. // Verify that runtime/protoimpl is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  22. )
  23. type GetUserMsgByKeyRequest struct {
  24. state protoimpl.MessageState
  25. sizeCache protoimpl.SizeCache
  26. unknownFields protoimpl.UnknownFields
  27. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  28. }
  29. func (x *GetUserMsgByKeyRequest) Reset() {
  30. *x = GetUserMsgByKeyRequest{}
  31. if protoimpl.UnsafeEnabled {
  32. mi := &file_wx_proto_msgTypes[0]
  33. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  34. ms.StoreMessageInfo(mi)
  35. }
  36. }
  37. func (x *GetUserMsgByKeyRequest) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*GetUserMsgByKeyRequest) ProtoMessage() {}
  41. func (x *GetUserMsgByKeyRequest) ProtoReflect() protoreflect.Message {
  42. mi := &file_wx_proto_msgTypes[0]
  43. if protoimpl.UnsafeEnabled && x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use GetUserMsgByKeyRequest.ProtoReflect.Descriptor instead.
  53. func (*GetUserMsgByKeyRequest) Descriptor() ([]byte, []int) {
  54. return file_wx_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *GetUserMsgByKeyRequest) GetKey() string {
  57. if x != nil {
  58. return x.Key
  59. }
  60. return ""
  61. }
  62. type GetUserMsgByKeyReply struct {
  63. state protoimpl.MessageState
  64. sizeCache protoimpl.SizeCache
  65. unknownFields protoimpl.UnknownFields
  66. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  67. OpenId string `protobuf:"bytes,2,opt,name=openId,proto3" json:"openId"`
  68. AppId string `protobuf:"bytes,3,opt,name=appId,proto3" json:"appId"`
  69. AppName string `protobuf:"bytes,4,opt,name=appName,proto3" json:"appName"`
  70. }
  71. func (x *GetUserMsgByKeyReply) Reset() {
  72. *x = GetUserMsgByKeyReply{}
  73. if protoimpl.UnsafeEnabled {
  74. mi := &file_wx_proto_msgTypes[1]
  75. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  76. ms.StoreMessageInfo(mi)
  77. }
  78. }
  79. func (x *GetUserMsgByKeyReply) String() string {
  80. return protoimpl.X.MessageStringOf(x)
  81. }
  82. func (*GetUserMsgByKeyReply) ProtoMessage() {}
  83. func (x *GetUserMsgByKeyReply) ProtoReflect() protoreflect.Message {
  84. mi := &file_wx_proto_msgTypes[1]
  85. if protoimpl.UnsafeEnabled && x != nil {
  86. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  87. if ms.LoadMessageInfo() == nil {
  88. ms.StoreMessageInfo(mi)
  89. }
  90. return ms
  91. }
  92. return mi.MessageOf(x)
  93. }
  94. // Deprecated: Use GetUserMsgByKeyReply.ProtoReflect.Descriptor instead.
  95. func (*GetUserMsgByKeyReply) Descriptor() ([]byte, []int) {
  96. return file_wx_proto_rawDescGZIP(), []int{1}
  97. }
  98. func (x *GetUserMsgByKeyReply) GetPartnerId() string {
  99. if x != nil {
  100. return x.PartnerId
  101. }
  102. return ""
  103. }
  104. func (x *GetUserMsgByKeyReply) GetOpenId() string {
  105. if x != nil {
  106. return x.OpenId
  107. }
  108. return ""
  109. }
  110. func (x *GetUserMsgByKeyReply) GetAppId() string {
  111. if x != nil {
  112. return x.AppId
  113. }
  114. return ""
  115. }
  116. func (x *GetUserMsgByKeyReply) GetAppName() string {
  117. if x != nil {
  118. return x.AppName
  119. }
  120. return ""
  121. }
  122. type ReduceUserUnreadRequest struct {
  123. state protoimpl.MessageState
  124. sizeCache protoimpl.SizeCache
  125. unknownFields protoimpl.UnknownFields
  126. AccountId int64 `protobuf:"varint,1,opt,name=accountId,proto3" json:"accountId"`
  127. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  128. }
  129. func (x *ReduceUserUnreadRequest) Reset() {
  130. *x = ReduceUserUnreadRequest{}
  131. if protoimpl.UnsafeEnabled {
  132. mi := &file_wx_proto_msgTypes[2]
  133. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  134. ms.StoreMessageInfo(mi)
  135. }
  136. }
  137. func (x *ReduceUserUnreadRequest) String() string {
  138. return protoimpl.X.MessageStringOf(x)
  139. }
  140. func (*ReduceUserUnreadRequest) ProtoMessage() {}
  141. func (x *ReduceUserUnreadRequest) ProtoReflect() protoreflect.Message {
  142. mi := &file_wx_proto_msgTypes[2]
  143. if protoimpl.UnsafeEnabled && x != nil {
  144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  145. if ms.LoadMessageInfo() == nil {
  146. ms.StoreMessageInfo(mi)
  147. }
  148. return ms
  149. }
  150. return mi.MessageOf(x)
  151. }
  152. // Deprecated: Use ReduceUserUnreadRequest.ProtoReflect.Descriptor instead.
  153. func (*ReduceUserUnreadRequest) Descriptor() ([]byte, []int) {
  154. return file_wx_proto_rawDescGZIP(), []int{2}
  155. }
  156. func (x *ReduceUserUnreadRequest) GetAccountId() int64 {
  157. if x != nil {
  158. return x.AccountId
  159. }
  160. return 0
  161. }
  162. func (x *ReduceUserUnreadRequest) GetPersonId() string {
  163. if x != nil {
  164. return x.PersonId
  165. }
  166. return ""
  167. }
  168. type SendNewMessageUnreadReminderRequest struct {
  169. state protoimpl.MessageState
  170. sizeCache protoimpl.SizeCache
  171. unknownFields protoimpl.UnknownFields
  172. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  173. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  174. }
  175. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  176. *x = SendNewMessageUnreadReminderRequest{}
  177. if protoimpl.UnsafeEnabled {
  178. mi := &file_wx_proto_msgTypes[3]
  179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  180. ms.StoreMessageInfo(mi)
  181. }
  182. }
  183. func (x *SendNewMessageUnreadReminderRequest) String() string {
  184. return protoimpl.X.MessageStringOf(x)
  185. }
  186. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  187. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  188. mi := &file_wx_proto_msgTypes[3]
  189. if protoimpl.UnsafeEnabled && x != nil {
  190. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  191. if ms.LoadMessageInfo() == nil {
  192. ms.StoreMessageInfo(mi)
  193. }
  194. return ms
  195. }
  196. return mi.MessageOf(x)
  197. }
  198. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  199. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  200. return file_wx_proto_rawDescGZIP(), []int{3}
  201. }
  202. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  203. if x != nil {
  204. return x.PersonId
  205. }
  206. return ""
  207. }
  208. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  209. if x != nil {
  210. return x.SendPersonId
  211. }
  212. return ""
  213. }
  214. var File_wx_proto protoreflect.FileDescriptor
  215. var file_wx_proto_rawDesc = []byte{
  216. 0x0a, 0x08, 0x77, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x61, 0x70, 0x69, 0x2e,
  217. 0x77, 0x78, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
  218. 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  219. 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  220. 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61,
  221. 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  222. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x63, 0x63, 0x6f,
  223. 0x75, 0x6e, 0x74, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  224. 0x6f, 0x22, 0x2a, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x42,
  225. 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b,
  226. 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x7c, 0x0a,
  227. 0x14, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x4b, 0x65, 0x79,
  228. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  229. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  230. 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20,
  231. 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
  232. 0x70, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49,
  233. 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  234. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x53, 0x0a, 0x17, 0x52,
  235. 0x65, 0x64, 0x75, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52,
  236. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  237. 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75,
  238. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  239. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  240. 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61,
  241. 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72,
  242. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  243. 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  244. 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  245. 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50,
  246. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x32, 0xc8, 0x05, 0x0a, 0x02, 0x57, 0x78, 0x12, 0x42,
  247. 0x0a, 0x0e, 0x43, 0x72, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x55, 0x73, 0x65, 0x72,
  248. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  249. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  250. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  251. 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x16, 0x43, 0x72, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x55, 0x6e,
  252. 0x72, 0x65, 0x61, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x12, 0x16, 0x2e, 0x67,
  253. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  254. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  255. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x65,
  256. 0x0a, 0x1c, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  257. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2b,
  258. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d,
  259. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69,
  260. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  261. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  262. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77,
  263. 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52,
  264. 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  265. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  266. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  267. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x10,
  268. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  269. 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65,
  270. 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  271. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  272. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0f, 0x47,
  273. 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x12, 0x1e,
  274. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d,
  275. 0x73, 0x67, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c,
  276. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d,
  277. 0x73, 0x67, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x5c,
  278. 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  279. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a,
  280. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43,
  281. 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4,
  282. 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73,
  283. 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x13,
  284. 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x56, 0x6f,
  285. 0x69, 0x63, 0x65, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  286. 0x74, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x44, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  287. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
  288. 0x4c, 0x69, 0x6e, 0x6b, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61,
  289. 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69,
  290. 0x61, 0x6c, 0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a,
  291. 0x01, 0x2a, 0x42, 0x37, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x50, 0x01, 0x5a, 0x2b,
  292. 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73,
  293. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  294. 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x3b, 0x77, 0x78, 0x62, 0x06, 0x70, 0x72, 0x6f,
  295. 0x74, 0x6f, 0x33,
  296. }
  297. var (
  298. file_wx_proto_rawDescOnce sync.Once
  299. file_wx_proto_rawDescData = file_wx_proto_rawDesc
  300. )
  301. func file_wx_proto_rawDescGZIP() []byte {
  302. file_wx_proto_rawDescOnce.Do(func() {
  303. file_wx_proto_rawDescData = protoimpl.X.CompressGZIP(file_wx_proto_rawDescData)
  304. })
  305. return file_wx_proto_rawDescData
  306. }
  307. var file_wx_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
  308. var file_wx_proto_goTypes = []interface{}{
  309. (*GetUserMsgByKeyRequest)(nil), // 0: api.wx.GetUserMsgByKeyRequest
  310. (*GetUserMsgByKeyReply)(nil), // 1: api.wx.GetUserMsgByKeyReply
  311. (*ReduceUserUnreadRequest)(nil), // 2: api.wx.ReduceUserUnreadRequest
  312. (*SendNewMessageUnreadReminderRequest)(nil), // 3: api.wx.SendNewMessageUnreadReminderRequest
  313. (*emptypb.Empty)(nil), // 4: google.protobuf.Empty
  314. (*common.PersonIDParam)(nil), // 5: api.common.PersonIDParam
  315. (*common.WxConfReq)(nil), // 6: api.common.WxConfReq
  316. (*account.MediaID)(nil), // 7: api.account.MediaID
  317. (*common.WxConfResponse)(nil), // 8: api.common.WxConfResponse
  318. (*account.MaterialLink)(nil), // 9: api.account.MaterialLink
  319. }
  320. var file_wx_proto_depIdxs = []int32{
  321. 4, // 0: api.wx.Wx.CronSignInUser:input_type -> google.protobuf.Empty
  322. 4, // 1: api.wx.Wx.CronSendUnreadTemplate:input_type -> google.protobuf.Empty
  323. 3, // 2: api.wx.Wx.SendNewMessageUnreadReminder:input_type -> api.wx.SendNewMessageUnreadReminderRequest
  324. 5, // 3: api.wx.Wx.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  325. 2, // 4: api.wx.Wx.ReduceUserUnread:input_type -> api.wx.ReduceUserUnreadRequest
  326. 0, // 5: api.wx.Wx.GetUserMsgByKey:input_type -> api.wx.GetUserMsgByKeyRequest
  327. 6, // 6: api.wx.Wx.WxConf:input_type -> api.common.WxConfReq
  328. 7, // 7: api.wx.Wx.UploadMaterialVoice:input_type -> api.account.MediaID
  329. 4, // 8: api.wx.Wx.CronSignInUser:output_type -> google.protobuf.Empty
  330. 4, // 9: api.wx.Wx.CronSendUnreadTemplate:output_type -> google.protobuf.Empty
  331. 4, // 10: api.wx.Wx.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  332. 4, // 11: api.wx.Wx.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  333. 4, // 12: api.wx.Wx.ReduceUserUnread:output_type -> google.protobuf.Empty
  334. 1, // 13: api.wx.Wx.GetUserMsgByKey:output_type -> api.wx.GetUserMsgByKeyReply
  335. 8, // 14: api.wx.Wx.WxConf:output_type -> api.common.WxConfResponse
  336. 9, // 15: api.wx.Wx.UploadMaterialVoice:output_type -> api.account.MaterialLink
  337. 8, // [8:16] is the sub-list for method output_type
  338. 0, // [0:8] is the sub-list for method input_type
  339. 0, // [0:0] is the sub-list for extension type_name
  340. 0, // [0:0] is the sub-list for extension extendee
  341. 0, // [0:0] is the sub-list for field type_name
  342. }
  343. func init() { file_wx_proto_init() }
  344. func file_wx_proto_init() {
  345. if File_wx_proto != nil {
  346. return
  347. }
  348. if !protoimpl.UnsafeEnabled {
  349. file_wx_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  350. switch v := v.(*GetUserMsgByKeyRequest); i {
  351. case 0:
  352. return &v.state
  353. case 1:
  354. return &v.sizeCache
  355. case 2:
  356. return &v.unknownFields
  357. default:
  358. return nil
  359. }
  360. }
  361. file_wx_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  362. switch v := v.(*GetUserMsgByKeyReply); i {
  363. case 0:
  364. return &v.state
  365. case 1:
  366. return &v.sizeCache
  367. case 2:
  368. return &v.unknownFields
  369. default:
  370. return nil
  371. }
  372. }
  373. file_wx_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  374. switch v := v.(*ReduceUserUnreadRequest); i {
  375. case 0:
  376. return &v.state
  377. case 1:
  378. return &v.sizeCache
  379. case 2:
  380. return &v.unknownFields
  381. default:
  382. return nil
  383. }
  384. }
  385. file_wx_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  386. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  387. case 0:
  388. return &v.state
  389. case 1:
  390. return &v.sizeCache
  391. case 2:
  392. return &v.unknownFields
  393. default:
  394. return nil
  395. }
  396. }
  397. }
  398. type x struct{}
  399. out := protoimpl.TypeBuilder{
  400. File: protoimpl.DescBuilder{
  401. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  402. RawDescriptor: file_wx_proto_rawDesc,
  403. NumEnums: 0,
  404. NumMessages: 4,
  405. NumExtensions: 0,
  406. NumServices: 1,
  407. },
  408. GoTypes: file_wx_proto_goTypes,
  409. DependencyIndexes: file_wx_proto_depIdxs,
  410. MessageInfos: file_wx_proto_msgTypes,
  411. }.Build()
  412. File_wx_proto = out.File
  413. file_wx_proto_rawDesc = nil
  414. file_wx_proto_goTypes = nil
  415. file_wx_proto_depIdxs = nil
  416. }