CircleNewPublishNotice.pb.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.35.2
  4. // protoc v5.28.3
  5. // source: CircleNewPublishNotice.proto
  6. package workphone
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type CircleCommentMessage struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. CommentId int64 `protobuf:"varint,1,opt,name=CommentId,proto3" json:"CommentId,omitempty"` // 微信本地数据库的id
  24. ReplyCommentId int64 `protobuf:"varint,2,opt,name=ReplyCommentId,proto3" json:"ReplyCommentId,omitempty"` // 回复的微信本地数据库的id
  25. Content string `protobuf:"bytes,3,opt,name=Content,proto3" json:"Content,omitempty"` // 评论内容
  26. FromWeChatId string `protobuf:"bytes,4,opt,name=FromWeChatId,proto3" json:"FromWeChatId,omitempty"` // 评论人的微信号
  27. ToWeChatId string `protobuf:"bytes,5,opt,name=ToWeChatId,proto3" json:"ToWeChatId,omitempty"` // 评论对象的微信号
  28. PublishTime int64 `protobuf:"varint,6,opt,name=PublishTime,proto3" json:"PublishTime,omitempty"` // 评论时间
  29. FromName string `protobuf:"bytes,7,opt,name=FromName,proto3" json:"FromName,omitempty"`
  30. ToName string `protobuf:"bytes,8,opt,name=ToName,proto3" json:"ToName,omitempty"`
  31. CircleId int64 `protobuf:"varint,9,opt,name=CircleId,proto3" json:"CircleId,omitempty"`
  32. Read int32 `protobuf:"varint,10,opt,name=Read,proto3" json:"Read,omitempty"`
  33. }
  34. func (x *CircleCommentMessage) Reset() {
  35. *x = CircleCommentMessage{}
  36. mi := &file_CircleNewPublishNotice_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. func (x *CircleCommentMessage) String() string {
  41. return protoimpl.X.MessageStringOf(x)
  42. }
  43. func (*CircleCommentMessage) ProtoMessage() {}
  44. func (x *CircleCommentMessage) ProtoReflect() protoreflect.Message {
  45. mi := &file_CircleNewPublishNotice_proto_msgTypes[0]
  46. if x != nil {
  47. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  48. if ms.LoadMessageInfo() == nil {
  49. ms.StoreMessageInfo(mi)
  50. }
  51. return ms
  52. }
  53. return mi.MessageOf(x)
  54. }
  55. // Deprecated: Use CircleCommentMessage.ProtoReflect.Descriptor instead.
  56. func (*CircleCommentMessage) Descriptor() ([]byte, []int) {
  57. return file_CircleNewPublishNotice_proto_rawDescGZIP(), []int{0}
  58. }
  59. func (x *CircleCommentMessage) GetCommentId() int64 {
  60. if x != nil {
  61. return x.CommentId
  62. }
  63. return 0
  64. }
  65. func (x *CircleCommentMessage) GetReplyCommentId() int64 {
  66. if x != nil {
  67. return x.ReplyCommentId
  68. }
  69. return 0
  70. }
  71. func (x *CircleCommentMessage) GetContent() string {
  72. if x != nil {
  73. return x.Content
  74. }
  75. return ""
  76. }
  77. func (x *CircleCommentMessage) GetFromWeChatId() string {
  78. if x != nil {
  79. return x.FromWeChatId
  80. }
  81. return ""
  82. }
  83. func (x *CircleCommentMessage) GetToWeChatId() string {
  84. if x != nil {
  85. return x.ToWeChatId
  86. }
  87. return ""
  88. }
  89. func (x *CircleCommentMessage) GetPublishTime() int64 {
  90. if x != nil {
  91. return x.PublishTime
  92. }
  93. return 0
  94. }
  95. func (x *CircleCommentMessage) GetFromName() string {
  96. if x != nil {
  97. return x.FromName
  98. }
  99. return ""
  100. }
  101. func (x *CircleCommentMessage) GetToName() string {
  102. if x != nil {
  103. return x.ToName
  104. }
  105. return ""
  106. }
  107. func (x *CircleCommentMessage) GetCircleId() int64 {
  108. if x != nil {
  109. return x.CircleId
  110. }
  111. return 0
  112. }
  113. func (x *CircleCommentMessage) GetRead() int32 {
  114. if x != nil {
  115. return x.Read
  116. }
  117. return 0
  118. }
  119. type CircleLikeMessage struct {
  120. state protoimpl.MessageState
  121. sizeCache protoimpl.SizeCache
  122. unknownFields protoimpl.UnknownFields
  123. FriendId string `protobuf:"bytes,1,opt,name=FriendId,proto3" json:"FriendId,omitempty"`
  124. PublishTime int64 `protobuf:"varint,2,opt,name=PublishTime,proto3" json:"PublishTime,omitempty"`
  125. NickName string `protobuf:"bytes,3,opt,name=NickName,proto3" json:"NickName,omitempty"`
  126. CircleId int64 `protobuf:"varint,4,opt,name=CircleId,proto3" json:"CircleId,omitempty"`
  127. Read int32 `protobuf:"varint,5,opt,name=Read,proto3" json:"Read,omitempty"`
  128. }
  129. func (x *CircleLikeMessage) Reset() {
  130. *x = CircleLikeMessage{}
  131. mi := &file_CircleNewPublishNotice_proto_msgTypes[1]
  132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  133. ms.StoreMessageInfo(mi)
  134. }
  135. func (x *CircleLikeMessage) String() string {
  136. return protoimpl.X.MessageStringOf(x)
  137. }
  138. func (*CircleLikeMessage) ProtoMessage() {}
  139. func (x *CircleLikeMessage) ProtoReflect() protoreflect.Message {
  140. mi := &file_CircleNewPublishNotice_proto_msgTypes[1]
  141. if x != nil {
  142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  143. if ms.LoadMessageInfo() == nil {
  144. ms.StoreMessageInfo(mi)
  145. }
  146. return ms
  147. }
  148. return mi.MessageOf(x)
  149. }
  150. // Deprecated: Use CircleLikeMessage.ProtoReflect.Descriptor instead.
  151. func (*CircleLikeMessage) Descriptor() ([]byte, []int) {
  152. return file_CircleNewPublishNotice_proto_rawDescGZIP(), []int{1}
  153. }
  154. func (x *CircleLikeMessage) GetFriendId() string {
  155. if x != nil {
  156. return x.FriendId
  157. }
  158. return ""
  159. }
  160. func (x *CircleLikeMessage) GetPublishTime() int64 {
  161. if x != nil {
  162. return x.PublishTime
  163. }
  164. return 0
  165. }
  166. func (x *CircleLikeMessage) GetNickName() string {
  167. if x != nil {
  168. return x.NickName
  169. }
  170. return ""
  171. }
  172. func (x *CircleLikeMessage) GetCircleId() int64 {
  173. if x != nil {
  174. return x.CircleId
  175. }
  176. return 0
  177. }
  178. func (x *CircleLikeMessage) GetRead() int32 {
  179. if x != nil {
  180. return x.Read
  181. }
  182. return 0
  183. }
  184. type CircleInformationMessage struct {
  185. state protoimpl.MessageState
  186. sizeCache protoimpl.SizeCache
  187. unknownFields protoimpl.UnknownFields
  188. WeChatId string `protobuf:"bytes,1,opt,name=WeChatId,proto3" json:"WeChatId,omitempty"` // 发布者
  189. CircleId int64 `protobuf:"varint,2,opt,name=CircleId,proto3" json:"CircleId,omitempty"` // 朋友圈id
  190. Content *CircleInformationMessage_CircleContentMessage `protobuf:"bytes,3,opt,name=Content,proto3" json:"Content,omitempty"` // 朋友圈内容
  191. Likes []*CircleLikeMessage `protobuf:"bytes,4,rep,name=Likes,proto3" json:"Likes,omitempty"` // 点赞好友friendid
  192. Comments []*CircleCommentMessage `protobuf:"bytes,5,rep,name=Comments,proto3" json:"Comments,omitempty"` // 评论好友
  193. PublishTime int64 `protobuf:"varint,6,opt,name=PublishTime,proto3" json:"PublishTime,omitempty"` // 发布时间
  194. }
  195. func (x *CircleInformationMessage) Reset() {
  196. *x = CircleInformationMessage{}
  197. mi := &file_CircleNewPublishNotice_proto_msgTypes[2]
  198. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  199. ms.StoreMessageInfo(mi)
  200. }
  201. func (x *CircleInformationMessage) String() string {
  202. return protoimpl.X.MessageStringOf(x)
  203. }
  204. func (*CircleInformationMessage) ProtoMessage() {}
  205. func (x *CircleInformationMessage) ProtoReflect() protoreflect.Message {
  206. mi := &file_CircleNewPublishNotice_proto_msgTypes[2]
  207. if x != nil {
  208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  209. if ms.LoadMessageInfo() == nil {
  210. ms.StoreMessageInfo(mi)
  211. }
  212. return ms
  213. }
  214. return mi.MessageOf(x)
  215. }
  216. // Deprecated: Use CircleInformationMessage.ProtoReflect.Descriptor instead.
  217. func (*CircleInformationMessage) Descriptor() ([]byte, []int) {
  218. return file_CircleNewPublishNotice_proto_rawDescGZIP(), []int{2}
  219. }
  220. func (x *CircleInformationMessage) GetWeChatId() string {
  221. if x != nil {
  222. return x.WeChatId
  223. }
  224. return ""
  225. }
  226. func (x *CircleInformationMessage) GetCircleId() int64 {
  227. if x != nil {
  228. return x.CircleId
  229. }
  230. return 0
  231. }
  232. func (x *CircleInformationMessage) GetContent() *CircleInformationMessage_CircleContentMessage {
  233. if x != nil {
  234. return x.Content
  235. }
  236. return nil
  237. }
  238. func (x *CircleInformationMessage) GetLikes() []*CircleLikeMessage {
  239. if x != nil {
  240. return x.Likes
  241. }
  242. return nil
  243. }
  244. func (x *CircleInformationMessage) GetComments() []*CircleCommentMessage {
  245. if x != nil {
  246. return x.Comments
  247. }
  248. return nil
  249. }
  250. func (x *CircleInformationMessage) GetPublishTime() int64 {
  251. if x != nil {
  252. return x.PublishTime
  253. }
  254. return 0
  255. }
  256. type CircleNewPublishNoticeMessage struct {
  257. state protoimpl.MessageState
  258. sizeCache protoimpl.SizeCache
  259. unknownFields protoimpl.UnknownFields
  260. WeChatId string `protobuf:"bytes,1,opt,name=WeChatId,proto3" json:"WeChatId,omitempty"` // 所属微信号
  261. Circle *CircleInformationMessage `protobuf:"bytes,2,opt,name=Circle,proto3" json:"Circle,omitempty"` // 朋友圈信息
  262. }
  263. func (x *CircleNewPublishNoticeMessage) Reset() {
  264. *x = CircleNewPublishNoticeMessage{}
  265. mi := &file_CircleNewPublishNotice_proto_msgTypes[3]
  266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  267. ms.StoreMessageInfo(mi)
  268. }
  269. func (x *CircleNewPublishNoticeMessage) String() string {
  270. return protoimpl.X.MessageStringOf(x)
  271. }
  272. func (*CircleNewPublishNoticeMessage) ProtoMessage() {}
  273. func (x *CircleNewPublishNoticeMessage) ProtoReflect() protoreflect.Message {
  274. mi := &file_CircleNewPublishNotice_proto_msgTypes[3]
  275. if x != nil {
  276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  277. if ms.LoadMessageInfo() == nil {
  278. ms.StoreMessageInfo(mi)
  279. }
  280. return ms
  281. }
  282. return mi.MessageOf(x)
  283. }
  284. // Deprecated: Use CircleNewPublishNoticeMessage.ProtoReflect.Descriptor instead.
  285. func (*CircleNewPublishNoticeMessage) Descriptor() ([]byte, []int) {
  286. return file_CircleNewPublishNotice_proto_rawDescGZIP(), []int{3}
  287. }
  288. func (x *CircleNewPublishNoticeMessage) GetWeChatId() string {
  289. if x != nil {
  290. return x.WeChatId
  291. }
  292. return ""
  293. }
  294. func (x *CircleNewPublishNoticeMessage) GetCircle() *CircleInformationMessage {
  295. if x != nil {
  296. return x.Circle
  297. }
  298. return nil
  299. }
  300. type CircleInformationMessage_CircleContentMessage struct {
  301. state protoimpl.MessageState
  302. sizeCache protoimpl.SizeCache
  303. unknownFields protoimpl.UnknownFields
  304. Text string `protobuf:"bytes,1,opt,name=Text,proto3" json:"Text,omitempty"` // 文本描述
  305. Images []*CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage `protobuf:"bytes,2,rep,name=Images,proto3" json:"Images,omitempty"` // 图片列表
  306. Link *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage `protobuf:"bytes,3,opt,name=Link,proto3" json:"Link,omitempty"` // 链接、分享
  307. Video *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage `protobuf:"bytes,4,opt,name=Video,proto3" json:"Video,omitempty"` // 视频
  308. Ext string `protobuf:"bytes,5,opt,name=Ext,proto3" json:"Ext,omitempty"`
  309. }
  310. func (x *CircleInformationMessage_CircleContentMessage) Reset() {
  311. *x = CircleInformationMessage_CircleContentMessage{}
  312. mi := &file_CircleNewPublishNotice_proto_msgTypes[4]
  313. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  314. ms.StoreMessageInfo(mi)
  315. }
  316. func (x *CircleInformationMessage_CircleContentMessage) String() string {
  317. return protoimpl.X.MessageStringOf(x)
  318. }
  319. func (*CircleInformationMessage_CircleContentMessage) ProtoMessage() {}
  320. func (x *CircleInformationMessage_CircleContentMessage) ProtoReflect() protoreflect.Message {
  321. mi := &file_CircleNewPublishNotice_proto_msgTypes[4]
  322. if x != nil {
  323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  324. if ms.LoadMessageInfo() == nil {
  325. ms.StoreMessageInfo(mi)
  326. }
  327. return ms
  328. }
  329. return mi.MessageOf(x)
  330. }
  331. // Deprecated: Use CircleInformationMessage_CircleContentMessage.ProtoReflect.Descriptor instead.
  332. func (*CircleInformationMessage_CircleContentMessage) Descriptor() ([]byte, []int) {
  333. return file_CircleNewPublishNotice_proto_rawDescGZIP(), []int{2, 0}
  334. }
  335. func (x *CircleInformationMessage_CircleContentMessage) GetText() string {
  336. if x != nil {
  337. return x.Text
  338. }
  339. return ""
  340. }
  341. func (x *CircleInformationMessage_CircleContentMessage) GetImages() []*CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage {
  342. if x != nil {
  343. return x.Images
  344. }
  345. return nil
  346. }
  347. func (x *CircleInformationMessage_CircleContentMessage) GetLink() *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage {
  348. if x != nil {
  349. return x.Link
  350. }
  351. return nil
  352. }
  353. func (x *CircleInformationMessage_CircleContentMessage) GetVideo() *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage {
  354. if x != nil {
  355. return x.Video
  356. }
  357. return nil
  358. }
  359. func (x *CircleInformationMessage_CircleContentMessage) GetExt() string {
  360. if x != nil {
  361. return x.Ext
  362. }
  363. return ""
  364. }
  365. type CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage struct {
  366. state protoimpl.MessageState
  367. sizeCache protoimpl.SizeCache
  368. unknownFields protoimpl.UnknownFields
  369. ThumbImg string `protobuf:"bytes,1,opt,name=ThumbImg,proto3" json:"ThumbImg,omitempty"` // 缩略图
  370. Url string `protobuf:"bytes,2,opt,name=Url,proto3" json:"Url,omitempty"` // 链接地址 视频地址等
  371. Description string `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"` // 标题等
  372. MediaId string `protobuf:"bytes,4,opt,name=mediaId,proto3" json:"mediaId,omitempty"` // 媒体id
  373. }
  374. func (x *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) Reset() {
  375. *x = CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage{}
  376. mi := &file_CircleNewPublishNotice_proto_msgTypes[5]
  377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  378. ms.StoreMessageInfo(mi)
  379. }
  380. func (x *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) String() string {
  381. return protoimpl.X.MessageStringOf(x)
  382. }
  383. func (*CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) ProtoMessage() {}
  384. func (x *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) ProtoReflect() protoreflect.Message {
  385. mi := &file_CircleNewPublishNotice_proto_msgTypes[5]
  386. if x != nil {
  387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  388. if ms.LoadMessageInfo() == nil {
  389. ms.StoreMessageInfo(mi)
  390. }
  391. return ms
  392. }
  393. return mi.MessageOf(x)
  394. }
  395. // Deprecated: Use CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage.ProtoReflect.Descriptor instead.
  396. func (*CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) Descriptor() ([]byte, []int) {
  397. return file_CircleNewPublishNotice_proto_rawDescGZIP(), []int{2, 0, 0}
  398. }
  399. func (x *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) GetThumbImg() string {
  400. if x != nil {
  401. return x.ThumbImg
  402. }
  403. return ""
  404. }
  405. func (x *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) GetUrl() string {
  406. if x != nil {
  407. return x.Url
  408. }
  409. return ""
  410. }
  411. func (x *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) GetDescription() string {
  412. if x != nil {
  413. return x.Description
  414. }
  415. return ""
  416. }
  417. func (x *CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage) GetMediaId() string {
  418. if x != nil {
  419. return x.MediaId
  420. }
  421. return ""
  422. }
  423. var File_CircleNewPublishNotice_proto protoreflect.FileDescriptor
  424. var file_CircleNewPublishNotice_proto_rawDesc = []byte{
  425. 0x0a, 0x1c, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x4e, 0x65, 0x77, 0x50, 0x75, 0x62, 0x6c, 0x69,
  426. 0x73, 0x68, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x17,
  427. 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57,
  428. 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc0, 0x02, 0x0a, 0x14, 0x43, 0x69, 0x72, 0x63,
  429. 0x6c, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  430. 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  431. 0x01, 0x28, 0x03, 0x52, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x26,
  432. 0x0a, 0x0e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64,
  433. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6f, 0x6d,
  434. 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  435. 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  436. 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74, 0x49, 0x64,
  437. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x43, 0x68,
  438. 0x61, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x6f, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74,
  439. 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x54, 0x6f, 0x57, 0x65, 0x43, 0x68,
  440. 0x61, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54,
  441. 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x50, 0x75, 0x62, 0x6c, 0x69,
  442. 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x72, 0x6f, 0x6d, 0x4e, 0x61,
  443. 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x46, 0x72, 0x6f, 0x6d, 0x4e, 0x61,
  444. 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x54, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01,
  445. 0x28, 0x09, 0x52, 0x06, 0x54, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x69,
  446. 0x72, 0x63, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x43, 0x69,
  447. 0x72, 0x63, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x52, 0x65, 0x61, 0x64, 0x18, 0x0a,
  448. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x52, 0x65, 0x61, 0x64, 0x22, 0x9d, 0x01, 0x0a, 0x11, 0x43,
  449. 0x69, 0x72, 0x63, 0x6c, 0x65, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  450. 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  451. 0x28, 0x09, 0x52, 0x08, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b,
  452. 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  453. 0x03, 0x52, 0x0b, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a,
  454. 0x0a, 0x08, 0x4e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  455. 0x52, 0x08, 0x4e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x69,
  456. 0x72, 0x63, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x43, 0x69,
  457. 0x72, 0x63, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x52, 0x65, 0x61, 0x64, 0x18, 0x05,
  458. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x52, 0x65, 0x61, 0x64, 0x22, 0x8e, 0x07, 0x0a, 0x18, 0x43,
  459. 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  460. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x57, 0x65, 0x43, 0x68, 0x61,
  461. 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x57, 0x65, 0x43, 0x68, 0x61,
  462. 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x64, 0x18,
  463. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x64, 0x12,
  464. 0x60, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  465. 0x32, 0x46, 0x2e, 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49,
  466. 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c,
  467. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73,
  468. 0x61, 0x67, 0x65, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  469. 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  470. 0x74, 0x12, 0x40, 0x0a, 0x05, 0x4c, 0x69, 0x6b, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  471. 0x32, 0x2a, 0x2e, 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49,
  472. 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c,
  473. 0x65, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x4c, 0x69,
  474. 0x6b, 0x65, 0x73, 0x12, 0x49, 0x0a, 0x08, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18,
  475. 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c,
  476. 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  477. 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73,
  478. 0x73, 0x61, 0x67, 0x65, 0x52, 0x08, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x20,
  479. 0x0a, 0x0b, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20,
  480. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65,
  481. 0x1a, 0xa8, 0x04, 0x0a, 0x14, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65,
  482. 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x65, 0x78,
  483. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x54, 0x65, 0x78, 0x74, 0x12, 0x77, 0x0a,
  484. 0x06, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x5f, 0x2e,
  485. 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57,
  486. 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e,
  487. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  488. 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4d, 0x65,
  489. 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x4e, 0x65, 0x77, 0x73,
  490. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x06,
  491. 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x73, 0x0a, 0x04, 0x4c, 0x69, 0x6e, 0x6b, 0x18, 0x03,
  492. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x5f, 0x2e, 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69,
  493. 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x43,
  494. 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  495. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x43, 0x6f,
  496. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x69, 0x72,
  497. 0x63, 0x6c, 0x65, 0x4e, 0x65, 0x77, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4d, 0x65,
  498. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x04, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x75, 0x0a, 0x05, 0x56,
  499. 0x69, 0x64, 0x65, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x5f, 0x2e, 0x4a, 0x75, 0x62,
  500. 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50,
  501. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  502. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x69,
  503. 0x72, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  504. 0x67, 0x65, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x4e, 0x65, 0x77, 0x73, 0x43, 0x6f, 0x6e,
  505. 0x74, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x56, 0x69, 0x64,
  506. 0x65, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x45, 0x78, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  507. 0x03, 0x45, 0x78, 0x74, 0x1a, 0x84, 0x01, 0x0a, 0x18, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x4e,
  508. 0x65, 0x77, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  509. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x49, 0x6d, 0x67, 0x18, 0x01, 0x20,
  510. 0x01, 0x28, 0x09, 0x52, 0x08, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x49, 0x6d, 0x67, 0x12, 0x10, 0x0a,
  511. 0x03, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x55, 0x72, 0x6c, 0x12,
  512. 0x20, 0x0a, 0x0b, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03,
  513. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  514. 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  515. 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x22, 0x86, 0x01, 0x0a, 0x1d,
  516. 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x4e, 0x65, 0x77, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
  517. 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a,
  518. 0x08, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  519. 0x08, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74, 0x49, 0x64, 0x12, 0x49, 0x0a, 0x06, 0x43, 0x69, 0x72,
  520. 0x63, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x4a, 0x75, 0x62, 0x6f,
  521. 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50, 0x72,
  522. 0x6f, 0x74, 0x6f, 0x2e, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  523. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x06, 0x43, 0x69,
  524. 0x72, 0x63, 0x6c, 0x65, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x70, 0x68,
  525. 0x6f, 0x6e, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  526. }
  527. var (
  528. file_CircleNewPublishNotice_proto_rawDescOnce sync.Once
  529. file_CircleNewPublishNotice_proto_rawDescData = file_CircleNewPublishNotice_proto_rawDesc
  530. )
  531. func file_CircleNewPublishNotice_proto_rawDescGZIP() []byte {
  532. file_CircleNewPublishNotice_proto_rawDescOnce.Do(func() {
  533. file_CircleNewPublishNotice_proto_rawDescData = protoimpl.X.CompressGZIP(file_CircleNewPublishNotice_proto_rawDescData)
  534. })
  535. return file_CircleNewPublishNotice_proto_rawDescData
  536. }
  537. var file_CircleNewPublishNotice_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
  538. var file_CircleNewPublishNotice_proto_goTypes = []any{
  539. (*CircleCommentMessage)(nil), // 0: Jubo.JuLiao.IM.Wx.Proto.CircleCommentMessage
  540. (*CircleLikeMessage)(nil), // 1: Jubo.JuLiao.IM.Wx.Proto.CircleLikeMessage
  541. (*CircleInformationMessage)(nil), // 2: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage
  542. (*CircleNewPublishNoticeMessage)(nil), // 3: Jubo.JuLiao.IM.Wx.Proto.CircleNewPublishNoticeMessage
  543. (*CircleInformationMessage_CircleContentMessage)(nil), // 4: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage
  544. (*CircleInformationMessage_CircleContentMessage_CircleNewsContentMessage)(nil), // 5: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage.CircleNewsContentMessage
  545. }
  546. var file_CircleNewPublishNotice_proto_depIdxs = []int32{
  547. 4, // 0: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.Content:type_name -> Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage
  548. 1, // 1: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.Likes:type_name -> Jubo.JuLiao.IM.Wx.Proto.CircleLikeMessage
  549. 0, // 2: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.Comments:type_name -> Jubo.JuLiao.IM.Wx.Proto.CircleCommentMessage
  550. 2, // 3: Jubo.JuLiao.IM.Wx.Proto.CircleNewPublishNoticeMessage.Circle:type_name -> Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage
  551. 5, // 4: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage.Images:type_name -> Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage.CircleNewsContentMessage
  552. 5, // 5: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage.Link:type_name -> Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage.CircleNewsContentMessage
  553. 5, // 6: Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage.Video:type_name -> Jubo.JuLiao.IM.Wx.Proto.CircleInformationMessage.CircleContentMessage.CircleNewsContentMessage
  554. 7, // [7:7] is the sub-list for method output_type
  555. 7, // [7:7] is the sub-list for method input_type
  556. 7, // [7:7] is the sub-list for extension type_name
  557. 7, // [7:7] is the sub-list for extension extendee
  558. 0, // [0:7] is the sub-list for field type_name
  559. }
  560. func init() { file_CircleNewPublishNotice_proto_init() }
  561. func file_CircleNewPublishNotice_proto_init() {
  562. if File_CircleNewPublishNotice_proto != nil {
  563. return
  564. }
  565. type x struct{}
  566. out := protoimpl.TypeBuilder{
  567. File: protoimpl.DescBuilder{
  568. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  569. RawDescriptor: file_CircleNewPublishNotice_proto_rawDesc,
  570. NumEnums: 0,
  571. NumMessages: 6,
  572. NumExtensions: 0,
  573. NumServices: 0,
  574. },
  575. GoTypes: file_CircleNewPublishNotice_proto_goTypes,
  576. DependencyIndexes: file_CircleNewPublishNotice_proto_depIdxs,
  577. MessageInfos: file_CircleNewPublishNotice_proto_msgTypes,
  578. }.Build()
  579. File_CircleNewPublishNotice_proto = out.File
  580. file_CircleNewPublishNotice_proto_rawDesc = nil
  581. file_CircleNewPublishNotice_proto_goTypes = nil
  582. file_CircleNewPublishNotice_proto_depIdxs = nil
  583. }