announcement.pb.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: announcement.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package v1
  5. import (
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. type AnnouncementAddRequest struct {
  20. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  21. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"`
  22. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"`
  23. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  24. XXX_unrecognized []byte `json:"-"`
  25. XXX_sizecache int32 `json:"-"`
  26. }
  27. func (m *AnnouncementAddRequest) Reset() { *m = AnnouncementAddRequest{} }
  28. func (m *AnnouncementAddRequest) String() string { return proto.CompactTextString(m) }
  29. func (*AnnouncementAddRequest) ProtoMessage() {}
  30. func (*AnnouncementAddRequest) Descriptor() ([]byte, []int) {
  31. return fileDescriptor_0080e911b962c5cf, []int{0}
  32. }
  33. func (m *AnnouncementAddRequest) XXX_Unmarshal(b []byte) error {
  34. return xxx_messageInfo_AnnouncementAddRequest.Unmarshal(m, b)
  35. }
  36. func (m *AnnouncementAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  37. return xxx_messageInfo_AnnouncementAddRequest.Marshal(b, m, deterministic)
  38. }
  39. func (m *AnnouncementAddRequest) XXX_Merge(src proto.Message) {
  40. xxx_messageInfo_AnnouncementAddRequest.Merge(m, src)
  41. }
  42. func (m *AnnouncementAddRequest) XXX_Size() int {
  43. return xxx_messageInfo_AnnouncementAddRequest.Size(m)
  44. }
  45. func (m *AnnouncementAddRequest) XXX_DiscardUnknown() {
  46. xxx_messageInfo_AnnouncementAddRequest.DiscardUnknown(m)
  47. }
  48. var xxx_messageInfo_AnnouncementAddRequest proto.InternalMessageInfo
  49. func (m *AnnouncementAddRequest) GetGardenId() int64 {
  50. if m != nil {
  51. return m.GardenId
  52. }
  53. return 0
  54. }
  55. func (m *AnnouncementAddRequest) GetTitle() string {
  56. if m != nil {
  57. return m.Title
  58. }
  59. return ""
  60. }
  61. func (m *AnnouncementAddRequest) GetContent() string {
  62. if m != nil {
  63. return m.Content
  64. }
  65. return ""
  66. }
  67. type AnnouncementAddReply struct {
  68. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  69. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  70. XXX_unrecognized []byte `json:"-"`
  71. XXX_sizecache int32 `json:"-"`
  72. }
  73. func (m *AnnouncementAddReply) Reset() { *m = AnnouncementAddReply{} }
  74. func (m *AnnouncementAddReply) String() string { return proto.CompactTextString(m) }
  75. func (*AnnouncementAddReply) ProtoMessage() {}
  76. func (*AnnouncementAddReply) Descriptor() ([]byte, []int) {
  77. return fileDescriptor_0080e911b962c5cf, []int{1}
  78. }
  79. func (m *AnnouncementAddReply) XXX_Unmarshal(b []byte) error {
  80. return xxx_messageInfo_AnnouncementAddReply.Unmarshal(m, b)
  81. }
  82. func (m *AnnouncementAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  83. return xxx_messageInfo_AnnouncementAddReply.Marshal(b, m, deterministic)
  84. }
  85. func (m *AnnouncementAddReply) XXX_Merge(src proto.Message) {
  86. xxx_messageInfo_AnnouncementAddReply.Merge(m, src)
  87. }
  88. func (m *AnnouncementAddReply) XXX_Size() int {
  89. return xxx_messageInfo_AnnouncementAddReply.Size(m)
  90. }
  91. func (m *AnnouncementAddReply) XXX_DiscardUnknown() {
  92. xxx_messageInfo_AnnouncementAddReply.DiscardUnknown(m)
  93. }
  94. var xxx_messageInfo_AnnouncementAddReply proto.InternalMessageInfo
  95. func (m *AnnouncementAddReply) GetId() int64 {
  96. if m != nil {
  97. return m.Id
  98. }
  99. return 0
  100. }
  101. type AnnouncementUpdateRequest struct {
  102. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  103. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"`
  104. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"`
  105. Id int64 `protobuf:"varint,4,opt,name=id,proto3" json:"id"`
  106. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  107. XXX_unrecognized []byte `json:"-"`
  108. XXX_sizecache int32 `json:"-"`
  109. }
  110. func (m *AnnouncementUpdateRequest) Reset() { *m = AnnouncementUpdateRequest{} }
  111. func (m *AnnouncementUpdateRequest) String() string { return proto.CompactTextString(m) }
  112. func (*AnnouncementUpdateRequest) ProtoMessage() {}
  113. func (*AnnouncementUpdateRequest) Descriptor() ([]byte, []int) {
  114. return fileDescriptor_0080e911b962c5cf, []int{2}
  115. }
  116. func (m *AnnouncementUpdateRequest) XXX_Unmarshal(b []byte) error {
  117. return xxx_messageInfo_AnnouncementUpdateRequest.Unmarshal(m, b)
  118. }
  119. func (m *AnnouncementUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  120. return xxx_messageInfo_AnnouncementUpdateRequest.Marshal(b, m, deterministic)
  121. }
  122. func (m *AnnouncementUpdateRequest) XXX_Merge(src proto.Message) {
  123. xxx_messageInfo_AnnouncementUpdateRequest.Merge(m, src)
  124. }
  125. func (m *AnnouncementUpdateRequest) XXX_Size() int {
  126. return xxx_messageInfo_AnnouncementUpdateRequest.Size(m)
  127. }
  128. func (m *AnnouncementUpdateRequest) XXX_DiscardUnknown() {
  129. xxx_messageInfo_AnnouncementUpdateRequest.DiscardUnknown(m)
  130. }
  131. var xxx_messageInfo_AnnouncementUpdateRequest proto.InternalMessageInfo
  132. func (m *AnnouncementUpdateRequest) GetGardenId() int64 {
  133. if m != nil {
  134. return m.GardenId
  135. }
  136. return 0
  137. }
  138. func (m *AnnouncementUpdateRequest) GetTitle() string {
  139. if m != nil {
  140. return m.Title
  141. }
  142. return ""
  143. }
  144. func (m *AnnouncementUpdateRequest) GetContent() string {
  145. if m != nil {
  146. return m.Content
  147. }
  148. return ""
  149. }
  150. func (m *AnnouncementUpdateRequest) GetId() int64 {
  151. if m != nil {
  152. return m.Id
  153. }
  154. return 0
  155. }
  156. type AnnouncementUpdateReply struct {
  157. Origin *AnnouncementUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  158. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  159. XXX_unrecognized []byte `json:"-"`
  160. XXX_sizecache int32 `json:"-"`
  161. }
  162. func (m *AnnouncementUpdateReply) Reset() { *m = AnnouncementUpdateReply{} }
  163. func (m *AnnouncementUpdateReply) String() string { return proto.CompactTextString(m) }
  164. func (*AnnouncementUpdateReply) ProtoMessage() {}
  165. func (*AnnouncementUpdateReply) Descriptor() ([]byte, []int) {
  166. return fileDescriptor_0080e911b962c5cf, []int{3}
  167. }
  168. func (m *AnnouncementUpdateReply) XXX_Unmarshal(b []byte) error {
  169. return xxx_messageInfo_AnnouncementUpdateReply.Unmarshal(m, b)
  170. }
  171. func (m *AnnouncementUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  172. return xxx_messageInfo_AnnouncementUpdateReply.Marshal(b, m, deterministic)
  173. }
  174. func (m *AnnouncementUpdateReply) XXX_Merge(src proto.Message) {
  175. xxx_messageInfo_AnnouncementUpdateReply.Merge(m, src)
  176. }
  177. func (m *AnnouncementUpdateReply) XXX_Size() int {
  178. return xxx_messageInfo_AnnouncementUpdateReply.Size(m)
  179. }
  180. func (m *AnnouncementUpdateReply) XXX_DiscardUnknown() {
  181. xxx_messageInfo_AnnouncementUpdateReply.DiscardUnknown(m)
  182. }
  183. var xxx_messageInfo_AnnouncementUpdateReply proto.InternalMessageInfo
  184. func (m *AnnouncementUpdateReply) GetOrigin() *AnnouncementUpdateRequest {
  185. if m != nil {
  186. return m.Origin
  187. }
  188. return nil
  189. }
  190. type AnnouncementDelRequest struct {
  191. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  192. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
  193. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  194. XXX_unrecognized []byte `json:"-"`
  195. XXX_sizecache int32 `json:"-"`
  196. }
  197. func (m *AnnouncementDelRequest) Reset() { *m = AnnouncementDelRequest{} }
  198. func (m *AnnouncementDelRequest) String() string { return proto.CompactTextString(m) }
  199. func (*AnnouncementDelRequest) ProtoMessage() {}
  200. func (*AnnouncementDelRequest) Descriptor() ([]byte, []int) {
  201. return fileDescriptor_0080e911b962c5cf, []int{4}
  202. }
  203. func (m *AnnouncementDelRequest) XXX_Unmarshal(b []byte) error {
  204. return xxx_messageInfo_AnnouncementDelRequest.Unmarshal(m, b)
  205. }
  206. func (m *AnnouncementDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  207. return xxx_messageInfo_AnnouncementDelRequest.Marshal(b, m, deterministic)
  208. }
  209. func (m *AnnouncementDelRequest) XXX_Merge(src proto.Message) {
  210. xxx_messageInfo_AnnouncementDelRequest.Merge(m, src)
  211. }
  212. func (m *AnnouncementDelRequest) XXX_Size() int {
  213. return xxx_messageInfo_AnnouncementDelRequest.Size(m)
  214. }
  215. func (m *AnnouncementDelRequest) XXX_DiscardUnknown() {
  216. xxx_messageInfo_AnnouncementDelRequest.DiscardUnknown(m)
  217. }
  218. var xxx_messageInfo_AnnouncementDelRequest proto.InternalMessageInfo
  219. func (m *AnnouncementDelRequest) GetGardenId() int64 {
  220. if m != nil {
  221. return m.GardenId
  222. }
  223. return 0
  224. }
  225. func (m *AnnouncementDelRequest) GetId() int64 {
  226. if m != nil {
  227. return m.Id
  228. }
  229. return 0
  230. }
  231. type AnnouncementDelReply struct {
  232. Origin *AnnouncementUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  233. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  234. XXX_unrecognized []byte `json:"-"`
  235. XXX_sizecache int32 `json:"-"`
  236. }
  237. func (m *AnnouncementDelReply) Reset() { *m = AnnouncementDelReply{} }
  238. func (m *AnnouncementDelReply) String() string { return proto.CompactTextString(m) }
  239. func (*AnnouncementDelReply) ProtoMessage() {}
  240. func (*AnnouncementDelReply) Descriptor() ([]byte, []int) {
  241. return fileDescriptor_0080e911b962c5cf, []int{5}
  242. }
  243. func (m *AnnouncementDelReply) XXX_Unmarshal(b []byte) error {
  244. return xxx_messageInfo_AnnouncementDelReply.Unmarshal(m, b)
  245. }
  246. func (m *AnnouncementDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  247. return xxx_messageInfo_AnnouncementDelReply.Marshal(b, m, deterministic)
  248. }
  249. func (m *AnnouncementDelReply) XXX_Merge(src proto.Message) {
  250. xxx_messageInfo_AnnouncementDelReply.Merge(m, src)
  251. }
  252. func (m *AnnouncementDelReply) XXX_Size() int {
  253. return xxx_messageInfo_AnnouncementDelReply.Size(m)
  254. }
  255. func (m *AnnouncementDelReply) XXX_DiscardUnknown() {
  256. xxx_messageInfo_AnnouncementDelReply.DiscardUnknown(m)
  257. }
  258. var xxx_messageInfo_AnnouncementDelReply proto.InternalMessageInfo
  259. func (m *AnnouncementDelReply) GetOrigin() *AnnouncementUpdateRequest {
  260. if m != nil {
  261. return m.Origin
  262. }
  263. return nil
  264. }
  265. type AnnouncementListRequest struct {
  266. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  267. PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  268. GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  269. Uid int64 `protobuf:"varint,4,opt,name=uid,proto3" json:"uid"`
  270. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  271. XXX_unrecognized []byte `json:"-"`
  272. XXX_sizecache int32 `json:"-"`
  273. }
  274. func (m *AnnouncementListRequest) Reset() { *m = AnnouncementListRequest{} }
  275. func (m *AnnouncementListRequest) String() string { return proto.CompactTextString(m) }
  276. func (*AnnouncementListRequest) ProtoMessage() {}
  277. func (*AnnouncementListRequest) Descriptor() ([]byte, []int) {
  278. return fileDescriptor_0080e911b962c5cf, []int{6}
  279. }
  280. func (m *AnnouncementListRequest) XXX_Unmarshal(b []byte) error {
  281. return xxx_messageInfo_AnnouncementListRequest.Unmarshal(m, b)
  282. }
  283. func (m *AnnouncementListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  284. return xxx_messageInfo_AnnouncementListRequest.Marshal(b, m, deterministic)
  285. }
  286. func (m *AnnouncementListRequest) XXX_Merge(src proto.Message) {
  287. xxx_messageInfo_AnnouncementListRequest.Merge(m, src)
  288. }
  289. func (m *AnnouncementListRequest) XXX_Size() int {
  290. return xxx_messageInfo_AnnouncementListRequest.Size(m)
  291. }
  292. func (m *AnnouncementListRequest) XXX_DiscardUnknown() {
  293. xxx_messageInfo_AnnouncementListRequest.DiscardUnknown(m)
  294. }
  295. var xxx_messageInfo_AnnouncementListRequest proto.InternalMessageInfo
  296. func (m *AnnouncementListRequest) GetPage() int64 {
  297. if m != nil {
  298. return m.Page
  299. }
  300. return 0
  301. }
  302. func (m *AnnouncementListRequest) GetPageSize() int64 {
  303. if m != nil {
  304. return m.PageSize
  305. }
  306. return 0
  307. }
  308. func (m *AnnouncementListRequest) GetGardenId() int64 {
  309. if m != nil {
  310. return m.GardenId
  311. }
  312. return 0
  313. }
  314. func (m *AnnouncementListRequest) GetUid() int64 {
  315. if m != nil {
  316. return m.Uid
  317. }
  318. return 0
  319. }
  320. type AnnouncementItem struct {
  321. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  322. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"`
  323. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"`
  324. CreatedAt string `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  325. ReadCount int64 `protobuf:"varint,5,opt,name=read_count,json=readCount,proto3" json:"read_count"`
  326. Read bool `protobuf:"varint,6,opt,name=read,proto3" json:"read"`
  327. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  328. XXX_unrecognized []byte `json:"-"`
  329. XXX_sizecache int32 `json:"-"`
  330. }
  331. func (m *AnnouncementItem) Reset() { *m = AnnouncementItem{} }
  332. func (m *AnnouncementItem) String() string { return proto.CompactTextString(m) }
  333. func (*AnnouncementItem) ProtoMessage() {}
  334. func (*AnnouncementItem) Descriptor() ([]byte, []int) {
  335. return fileDescriptor_0080e911b962c5cf, []int{7}
  336. }
  337. func (m *AnnouncementItem) XXX_Unmarshal(b []byte) error {
  338. return xxx_messageInfo_AnnouncementItem.Unmarshal(m, b)
  339. }
  340. func (m *AnnouncementItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  341. return xxx_messageInfo_AnnouncementItem.Marshal(b, m, deterministic)
  342. }
  343. func (m *AnnouncementItem) XXX_Merge(src proto.Message) {
  344. xxx_messageInfo_AnnouncementItem.Merge(m, src)
  345. }
  346. func (m *AnnouncementItem) XXX_Size() int {
  347. return xxx_messageInfo_AnnouncementItem.Size(m)
  348. }
  349. func (m *AnnouncementItem) XXX_DiscardUnknown() {
  350. xxx_messageInfo_AnnouncementItem.DiscardUnknown(m)
  351. }
  352. var xxx_messageInfo_AnnouncementItem proto.InternalMessageInfo
  353. func (m *AnnouncementItem) GetId() int64 {
  354. if m != nil {
  355. return m.Id
  356. }
  357. return 0
  358. }
  359. func (m *AnnouncementItem) GetTitle() string {
  360. if m != nil {
  361. return m.Title
  362. }
  363. return ""
  364. }
  365. func (m *AnnouncementItem) GetContent() string {
  366. if m != nil {
  367. return m.Content
  368. }
  369. return ""
  370. }
  371. func (m *AnnouncementItem) GetCreatedAt() string {
  372. if m != nil {
  373. return m.CreatedAt
  374. }
  375. return ""
  376. }
  377. func (m *AnnouncementItem) GetReadCount() int64 {
  378. if m != nil {
  379. return m.ReadCount
  380. }
  381. return 0
  382. }
  383. func (m *AnnouncementItem) GetRead() bool {
  384. if m != nil {
  385. return m.Read
  386. }
  387. return false
  388. }
  389. type AnnouncementListReply struct {
  390. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  391. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  392. List []*AnnouncementItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  393. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  394. XXX_unrecognized []byte `json:"-"`
  395. XXX_sizecache int32 `json:"-"`
  396. }
  397. func (m *AnnouncementListReply) Reset() { *m = AnnouncementListReply{} }
  398. func (m *AnnouncementListReply) String() string { return proto.CompactTextString(m) }
  399. func (*AnnouncementListReply) ProtoMessage() {}
  400. func (*AnnouncementListReply) Descriptor() ([]byte, []int) {
  401. return fileDescriptor_0080e911b962c5cf, []int{8}
  402. }
  403. func (m *AnnouncementListReply) XXX_Unmarshal(b []byte) error {
  404. return xxx_messageInfo_AnnouncementListReply.Unmarshal(m, b)
  405. }
  406. func (m *AnnouncementListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  407. return xxx_messageInfo_AnnouncementListReply.Marshal(b, m, deterministic)
  408. }
  409. func (m *AnnouncementListReply) XXX_Merge(src proto.Message) {
  410. xxx_messageInfo_AnnouncementListReply.Merge(m, src)
  411. }
  412. func (m *AnnouncementListReply) XXX_Size() int {
  413. return xxx_messageInfo_AnnouncementListReply.Size(m)
  414. }
  415. func (m *AnnouncementListReply) XXX_DiscardUnknown() {
  416. xxx_messageInfo_AnnouncementListReply.DiscardUnknown(m)
  417. }
  418. var xxx_messageInfo_AnnouncementListReply proto.InternalMessageInfo
  419. func (m *AnnouncementListReply) GetPage() int64 {
  420. if m != nil {
  421. return m.Page
  422. }
  423. return 0
  424. }
  425. func (m *AnnouncementListReply) GetTotal() int64 {
  426. if m != nil {
  427. return m.Total
  428. }
  429. return 0
  430. }
  431. func (m *AnnouncementListReply) GetList() []*AnnouncementItem {
  432. if m != nil {
  433. return m.List
  434. }
  435. return nil
  436. }
  437. func init() {
  438. proto.RegisterType((*AnnouncementAddRequest)(nil), "pb_v1.AnnouncementAddRequest")
  439. proto.RegisterType((*AnnouncementAddReply)(nil), "pb_v1.AnnouncementAddReply")
  440. proto.RegisterType((*AnnouncementUpdateRequest)(nil), "pb_v1.AnnouncementUpdateRequest")
  441. proto.RegisterType((*AnnouncementUpdateReply)(nil), "pb_v1.AnnouncementUpdateReply")
  442. proto.RegisterType((*AnnouncementDelRequest)(nil), "pb_v1.AnnouncementDelRequest")
  443. proto.RegisterType((*AnnouncementDelReply)(nil), "pb_v1.AnnouncementDelReply")
  444. proto.RegisterType((*AnnouncementListRequest)(nil), "pb_v1.AnnouncementListRequest")
  445. proto.RegisterType((*AnnouncementItem)(nil), "pb_v1.AnnouncementItem")
  446. proto.RegisterType((*AnnouncementListReply)(nil), "pb_v1.AnnouncementListReply")
  447. }
  448. func init() {
  449. proto.RegisterFile("announcement.proto", fileDescriptor_0080e911b962c5cf)
  450. }
  451. var fileDescriptor_0080e911b962c5cf = []byte{
  452. // 406 bytes of a gzipped FileDescriptorProto
  453. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0x4f, 0x6b, 0xdb, 0x30,
  454. 0x18, 0xc6, 0xb1, 0x9d, 0x64, 0xf1, 0x5b, 0x18, 0x45, 0x74, 0xab, 0xc7, 0x28, 0x33, 0x3e, 0x0c,
  455. 0xc3, 0x68, 0x4a, 0xbb, 0xcb, 0xae, 0xd9, 0x9f, 0x43, 0x61, 0x87, 0xe1, 0xb2, 0xcb, 0x2e, 0x46,
  456. 0xb1, 0x5e, 0x8c, 0xc0, 0x91, 0x34, 0xfb, 0x75, 0x37, 0xf7, 0xf3, 0xec, 0x83, 0x0e, 0xc9, 0xae,
  457. 0x89, 0x9b, 0x0c, 0x36, 0x46, 0x4f, 0xd1, 0xfb, 0x48, 0xe8, 0xf9, 0x3d, 0x8f, 0x62, 0x60, 0x5c,
  458. 0x29, 0xdd, 0xaa, 0x02, 0xb7, 0xa8, 0x68, 0x65, 0x6a, 0x4d, 0x9a, 0xcd, 0xcd, 0x26, 0xbf, 0xbd,
  459. 0x4c, 0x10, 0x9e, 0xaf, 0x77, 0x36, 0xd7, 0x42, 0x64, 0xf8, 0xbd, 0xc5, 0x86, 0xd8, 0x4b, 0x08,
  460. 0x4b, 0x5e, 0x0b, 0x54, 0xb9, 0x14, 0x91, 0x17, 0x7b, 0x69, 0x90, 0x2d, 0x7b, 0xe1, 0x5a, 0xb0,
  461. 0x13, 0x98, 0x93, 0xa4, 0x0a, 0x23, 0x3f, 0xf6, 0xd2, 0x30, 0xeb, 0x07, 0x16, 0xc1, 0x93, 0x42,
  462. 0x2b, 0x42, 0x45, 0x51, 0xe0, 0xf4, 0xfb, 0x31, 0x79, 0x0d, 0x27, 0x7b, 0x36, 0xa6, 0xea, 0xd8,
  463. 0x53, 0xf0, 0xc7, 0xdb, 0x7d, 0x29, 0x92, 0x9f, 0xf0, 0x62, 0xf7, 0xdc, 0x57, 0x23, 0x38, 0xe1,
  464. 0x63, 0x10, 0x0d, 0xce, 0xb3, 0xd1, 0xf9, 0x06, 0x4e, 0x0f, 0x39, 0x5b, 0xc8, 0x77, 0xb0, 0xd0,
  465. 0xb5, 0x2c, 0xa5, 0x72, 0xa6, 0x47, 0x57, 0xf1, 0xca, 0x75, 0xb7, 0xfa, 0x23, 0x69, 0x36, 0x9c,
  466. 0x4f, 0x3e, 0x4d, 0xdb, 0xfd, 0x88, 0xd5, 0x5f, 0x65, 0xe9, 0xd9, 0xfc, 0x91, 0xed, 0xcb, 0xb4,
  467. 0x3d, 0x77, 0xcd, 0xff, 0x81, 0x75, 0xd3, 0xb4, 0x9f, 0x65, 0x43, 0xf7, 0x64, 0x0c, 0x66, 0x86,
  468. 0x97, 0x38, 0x40, 0xb9, 0xb5, 0xa5, 0xb5, 0xbf, 0x79, 0x23, 0xef, 0x70, 0xe0, 0x5a, 0x5a, 0xe1,
  469. 0x46, 0xde, 0xe1, 0x34, 0x4a, 0xf0, 0x20, 0xca, 0x31, 0x04, 0xed, 0xd8, 0xb3, 0x5d, 0x26, 0xbf,
  470. 0x3c, 0x38, 0xde, 0xf5, 0xbe, 0x26, 0xdc, 0x3e, 0xfc, 0x1f, 0xfc, 0xf3, 0x6b, 0x9e, 0x01, 0x14,
  471. 0x35, 0x72, 0x42, 0x91, 0x73, 0x72, 0x6e, 0x61, 0x16, 0x0e, 0xca, 0xda, 0x6d, 0xd7, 0xc8, 0x45,
  472. 0x5e, 0xe8, 0x56, 0x51, 0x34, 0x77, 0x36, 0xa1, 0x55, 0x3e, 0x58, 0xc1, 0x46, 0xb6, 0x43, 0xb4,
  473. 0x88, 0xbd, 0x74, 0x99, 0xb9, 0x75, 0xa2, 0xe0, 0xd9, 0x7e, 0x43, 0xb6, 0xf4, 0x43, 0xfd, 0x58,
  474. 0x5c, 0x4d, 0xbc, 0x1a, 0xba, 0xe9, 0x07, 0xf6, 0x06, 0x66, 0x95, 0x6c, 0x2c, 0x6b, 0x90, 0x1e,
  475. 0x5d, 0x9d, 0x1e, 0x78, 0x1c, 0x9b, 0x3d, 0x73, 0x87, 0xde, 0xbf, 0xfa, 0x76, 0x66, 0x6a, 0x6d,
  476. 0xb0, 0xa6, 0xee, 0xbc, 0xe9, 0x1a, 0xc2, 0xed, 0x79, 0xc9, 0x09, 0x7f, 0xf0, 0xee, 0xc2, 0x6c,
  477. 0x2e, 0x6e, 0x2f, 0x37, 0x0b, 0xf7, 0xdd, 0xbe, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x14, 0x48,
  478. 0x41, 0x3c, 0xcd, 0x03, 0x00, 0x00,
  479. }