forked from SocialSisterYi/bilibili-API-collect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic.proto
5810 lines (5384 loc) · 115 KB
/
dynamic.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
syntax = "proto3";
package bilibili.app.dynamic.v2;
import "google/protobuf/any.proto";
import "bilibili/app/archive/middleware/v1/preload.proto";
import "bilibili/dagw/component/avatar/v1/avatar.proto";
// v2动态, rpc 按字母顺序排列
service Dynamic {
//
rpc AlumniDynamics (AlumniDynamicsReq) returns (AlumniDynamicsReply);
//
rpc CampusBillBoard (CampusBillBoardReq) returns (CampusBillBoardReply);
//
rpc CampusEntryTab(CampusEntryTabReq) returns (CampusEntryTabResp);
//
rpc CampusFeedback(CampusFeedbackReq) returns (CampusFeedbackReply);
//
rpc CampusHomePages(CampusHomePagesReq) returns (CampusHomePagesReply);
//
rpc CampusMateLikeList(CampusMateLikeListReq) returns (CampusMateLikeListReply);
//
rpc CampusMngDetail(CampusMngDetailReq) returns (CampusMngDetailReply);
//
rpc CampusMngQuizOperate(CampusMngQuizOperateReq) returns (CampusMngQuizOperateReply);
//
rpc CampusMngSubmit(CampusMngSubmitReq) returns (CampusMngSubmitReply);
//
rpc CampusRcmd(CampusRcmdReq) returns (CampusRcmdReply);
//
rpc CampusRcmdFeed(CampusRcmdFeedReq) returns (CampusRcmdFeedReply);
//
rpc CampusRecommend(CampusRecommendReq) returns (CampusRecommendReply);
//
rpc CampusRedDot(CampusRedDotReq) returns (CampusRedDotReply);
//
rpc CampusSquare(CampusSquareReq) returns (CampusSquareReply);
//
rpc CampusTopicRcmdFeed(CampusTopicRcmdFeedReq) returns (CampusTopicRcmdFeedReply);
// 动态通用附加卡-follow/取消follow
rpc DynAdditionCommonFollow(DynAdditionCommonFollowReq) returns (DynAdditionCommonFollowReply);
// 动态综合页
rpc DynAll(DynAllReq) returns (DynAllReply);
// 综合页最近访问 - 个人feed流
rpc DynAllPersonal(DynAllPersonalReq) returns (DynAllPersonalReply);
// 综合页最近访问 - 标记已读
rpc DynAllUpdOffset(DynAllUpdOffsetReq) returns (NoReply);
// 动态详情页
rpc DynDetail(DynDetailReq) returns (DynDetailReply);
// 批量动态id获取动态详情
rpc DynDetails(DynDetailsReq) returns (DynDetailsReply);
// 动态发布生成临时卡
rpc DynFakeCard(DynFakeCardReq) returns (DynFakeCardReply);
//
rpc DynFriend(DynFriendReq) returns (DynFriendReply);
// 轻浏览
rpc DynLight(DynLightReq) returns (DynLightReply);
// 网关调用 - 查看更多-列表
rpc DynMixUpListViewMore(DynMixUpListViewMoreReq) returns (DynMixUpListViewMoreReply);
// 关注推荐up主换一换
rpc DynRcmdUpExchange(DynRcmdUpExchangeReq) returns (DynRcmdUpExchangeReply);
//
rpc DynSearch(DynSearchReq) returns (DynSearchReply);
//
rpc DynServerDetails(DynServerDetailsReq) returns (DynServerDetailsReply);
// 空间页动态
rpc DynSpace(DynSpaceReq) returns (DynSpaceRsp);
//
rpc DynSpaceSearchDetails(DynSpaceSearchDetailsReq) returns (DynSpaceSearchDetailsReply);
//
rpc DynTab(DynTabReq) returns (DynTabReply);
// 动态点赞
rpc DynThumb(DynThumbReq) returns (NoReply);
// 未登录页分区UP主推荐
rpc DynUnLoginRcmd(DynRcmdReq) returns (DynRcmdReply);
// 动态视频页
rpc DynVideo(DynVideoReq) returns (DynVideoReply);
// 视频页最近访问 - 个人feed流
rpc DynVideoPersonal(DynVideoPersonalReq) returns (DynVideoPersonalReply);
// 视频页最近访问 - 标记已读
rpc DynVideoUpdOffset(DynVideoUpdOffsetReq) returns (NoReply);
//
rpc DynVote(DynVoteReq) returns (DynVoteReply);
//
rpc FeedFilter(FeedFilterReq) returns (FeedFilterReply);
//
rpc FetchTabSetting(NoReq) returns (FetchTabSettingReply);
//
rpc HomeSubscribe(HomeSubscribeReq) returns (HomeSubscribeReply);
//
rpc LbsPoi(LbsPoiReq) returns (LbsPoiReply);
//
rpc LegacyTopicFeed(LegacyTopicFeedReq) returns (LegacyTopicFeedReply);
// 点赞列表
rpc LikeList(LikeListReq) returns (LikeListReply);
//
rpc OfficialAccounts(OfficialAccountsReq) returns (OfficialAccountsReply);
//
rpc OfficialDynamics(OfficialDynamicsReq) returns (OfficialDynamicsReply);
// 新版动态转发点赞列表 需要登录
rpc ReactionList(ReactionListReq) returns (ReactionListReply);
// 转发列表
rpc RepostList(RepostListReq) returns (RepostListRsp);
//
rpc SchoolRecommend(SchoolRecommendReq) returns (SchoolRecommendReply);
//
rpc SchoolSearch(SchoolSearchReq) returns (SchoolSearchReply);
//
rpc SetDecision(SetDecisionReq) returns (NoReply);
//
rpc SetRecentCampus(SetRecentCampusReq) returns (NoReply);
//
rpc SubscribeCampus(SubscribeCampusReq) returns (NoReply);
//
rpc TopicList(TopicListReq) returns (TopicListReply);
//
rpc TopicSquare(TopicSquareReq) returns (TopicSquareReply);
//
rpc UnfollowMatch(UnfollowMatchReq) returns (NoReply);
//
rpc UpdateTabSetting(UpdateTabSettingReq) returns (NoReply);
}
//
enum AddButtonBgStyle {
fill = 0; // 默认填充
stroke = 1; // 描边
gray = 2; // 置灰
}
// 按钮类型
enum AddButtonType {
bt_none = 0; // 占位
bt_jump = 1; // 跳转
bt_button = 2; // 按钮
}
// 活动皮肤
message AdditionalActSkin {
// 动画SVGA资源
string svga = 1;
// 动画SVGA最后一帧图片资源
string last_image = 2;
// 动画播放次数
int64 play_times = 3;
}
// 动态-附加卡-按钮
message AdditionalButton {
// 按钮类型
AddButtonType type = 1;
// jump-跳转样式
AdditionalButtonStyle jump_style = 2;
// jump-跳转链接
string jump_url = 3;
// button-未点样式
AdditionalButtonStyle uncheck = 4;
// button-已点样式
AdditionalButtonStyle check = 5;
// button-当前状态
AdditionalButtonStatus status = 6;
// 按钮点击样式
AdditionalButtonClickType click_type = 7;
}
// 附加卡按钮点击类型
enum AdditionalButtonClickType {
click_none = 0; // 通用按钮
click_up = 1; // 预约卡按钮
}
//
message AdditionalButtonInteractive {
// 是否弹窗
string popups = 1;
// 弹窗确认文案
string confirm = 2;
// 弹窗取消文案
string cancel = 3;
//
string desc = 4;
}
//
message AdditionalButtonShare {
//
int32 show = 1;
//
string icon = 2;
//
string text = 3;
}
// 附加卡按钮状态
enum AdditionalButtonStatus {
none = 0; //
uncheck = 1; //
check = 2; //
}
// 动态-附加卡-按钮样式
message AdditionalButtonStyle {
// icon
string icon = 1;
// 文案
string text = 2;
// 按钮点击交互
AdditionalButtonInteractive interactive = 3;
// 当前按钮填充样式
AddButtonBgStyle bg_style = 4;
// toast文案, 当disable=1时有效
string toast = 5;
// 当前按钮样式,
// 0:高亮 1:置灰(按钮不可点击)
DisableState disable = 6;
//
AdditionalButtonShare share = 7;
}
// 动态-附加卡-番剧卡
message AdditionalPGC {
// 头部说明文案
string head_text = 1;
// 标题
string title = 2;
// 展示图
string image_url = 3;
// 描述文字1
string desc_text_1 = 4;
// 描述文字2
string desc_text_2 = 5;
// 点击跳转链接
string url = 6;
// 按钮
AdditionalButton button = 7;
// 头部icon
string head_icon = 8;
// style
ImageStyle style = 9;
// 动态本身的类型 type
string type = 10;
}
//
enum AdditionalShareShowType {
st_none = 0; //
st_show = 1; //
}
// 枚举-动态附加卡
enum AdditionalType {
additional_none = 0; // 占位
additional_type_pgc = 1; // 附加卡-追番
additional_type_goods = 2; // 附加卡-商品
additional_type_vote = 3; // 附加卡投票
additional_type_common = 4; // 附加通用卡
additional_type_esport = 5; // 附加电竞卡
additional_type_up_rcmd = 6; // 附加UP主推荐卡
additional_type_ugc = 7; // 附加卡-ugc
additional_type_up_reservation = 8; // UP主预约卡
}
// 动态-附加卡-专栏
message AdditionArticle {
//
string title = 1;
//
MdlDynDrawItem cover = 2;
//
string desc_text_left = 3;
//
string desc_text_right = 4;
//
string uri = 5;
//
string card_type = 6;
}
// 动态-附加卡-通用卡
message AdditionCommon {
// 头部说明文案
string head_text = 1;
// 标题
string title = 2;
// 展示图
string image_url = 3;
// 描述文字1
string desc_text_1 = 4;
// 描述文字2
string desc_text_2 = 5;
// 点击跳转链接
string url = 6;
// 按钮
AdditionalButton button = 7;
// 头部icon
string head_icon = 8;
// style
ImageStyle style = 9;
// 动态本身的类型 type
string type = 10;
// 附加卡类型
string card_type = 11; // ogv manga
}
// 动态-附加卡-电竞卡
message AdditionEsport {
// 电竞类型
EspaceStyle style = 1;
oneof item {
// moba类
AdditionEsportMoba addition_esport_moba = 2;
}
// 动态本身的类型 type
string type = 3;
// 附加卡类型
string card_type = 4; // ogv manga
}
// 动态-附加卡-电竞卡-moba类
message AdditionEsportMoba {
// 头部说明文案
string head_text = 1;
// 标题
string title = 2;
// 战队列表
repeated MatchTeam match_team = 3;
// 比赛信息
AdditionEsportMobaStatus addition_esport_moba_status = 4;
// 卡片跳转
string uri = 5;
// 按钮
AdditionalButton button = 6;
// 副标题
string sub_title = 7;
// 动态本身的类型 type
string type = 10;
// 附加卡类型
string card_type = 11;
// 附加卡图标
string head_icon = 12;
}
// 动态-附加卡-电竞卡-moba类-比赛信息
message AdditionEsportMobaStatus {
// 文案类
repeated AdditionEsportMobaStatusDesc addition_esport_moba_status_desc = 1;
// 比赛状态文案
string title = 2;
// 比赛状态状态
int32 status = 3;
// 日间色值
string color = 4;
// 夜间色值
string night_color = 5;
}
// 动态-附加卡-电竞卡-moba类-比赛信息-文案类
message AdditionEsportMobaStatusDesc {
// 文案
string title = 1;
// 日间色值
string color = 2;
// 夜间色值
string night_color = 3;
}
// 动态-附加卡-商品卡
message AdditionGoods {
// 推荐文案
string rcmd_desc = 1;
// 商品信息
repeated GoodsItem goods_items = 2;
// 附加卡类型
string card_type = 3;
// 头部icon
string icon = 4;
// 商品附加卡整卡跳转
string uri = 5;
// 商品类型
// 1:淘宝 2:会员购,注:实际是获取的goods_items里面的第一个source_type
int32 source_type = 6;
//
int32 jump_type = 7;
//
string app_name = 8;
//
string ad_mark_icon = 9;
}
// 动态-附加卡-直播附加卡
message AdditionLiveRoom {
//
string title = 1;
//
string cover = 2;
//
VideoBadge badge = 3;
//
CoverIconWithText desc_text_upper = 4;
//
string desc_text_lower = 5;
//
string uri = 6;
//
string card_type = 7;
}
// 动态-附加卡-UGC视频附加卡
message AdditionUgc {
// 说明文案
string head_text = 1;
// 稿件标题
string title = 2;
// 封面
string cover = 3;
// 描述文字1
string desc_text_1 = 4;
// 描述文字2
string desc_text_2 = 5;
// 接秒开
string uri = 6;
// 时长
string duration = 7;
// 标题支持换行-标题支持单行和双行,本期不支持填充up昵称,支持双行展示,字段默认为true
bool line_feed = 8;
// 附加卡类型
string card_type = 9;
}
// up主预约发布卡
message AdditionUP {
// 标题
string title = 1;
// 高亮文本,描述文字1
HighlightText desc_text_1 = 2;
// 描述文字2
string desc_text_2 = 3;
// 点击跳转链接
string url = 4;
// 按钮
AdditionalButton button = 5;
// 附加卡类型
string card_type = 6;
// 预约人数(用于预约人数变化)
int64 reserve_total = 7;
// 活动皮肤
AdditionalActSkin act_skin = 8;
// 预约id
int64 rid = 9;
//
int32 lottery_type = 10;
//
HighlightText desc_text3 = 11;
//
int64 up_mid = 12;
//
AdditionUserInfo user_info = 13;
//
string dynamic_id = 14;
//
bool show_text2 = 15;
//
int64 dyn_type = 16;
//
string business_id = 17;
//
string badge_text = 18;
//
bool is_premiere = 19;
}
//
message AdditionUserInfo {
//
string name = 1;
//
string face = 2;
}
// 动态-附加卡-投票
message AdditionVote {
// 封面图
string image_url = 1;
// 标题
string title = 2;
// 展示项1
string text_1 = 3;
// button文案
string button_text = 4;
// 点击跳转链接
string url = 5;
}
// 动态模块-投票
message AdditionVote2 {
// 投票类型
AdditionVoteType addition_vote_type = 1;
// 投票ID
int64 vote_id = 2;
// 标题
string title = 3;
// 已过期: xxx人参与· 投票已过期。button 展示去查看
// 未过期: xxx人参与· 剩xx天xx时xx分。button展示去投票
string label = 4;
// 剩余时间
int64 deadline = 5;
// 生效文案
string open_text = 6;
// 过期文案
string close_text = 7;
// 已投票
string voted_text = 8;
// 投票状态
AdditionVoteState state = 9;
// 投票信息
oneof item {
//
AdditionVoteWord addition_vote_word = 10;
//
AdditionVotePic addition_vote_pic = 11;
//
AdditionVoteDefaule addition_vote_defaule = 12;
}
// 业务类型
// 0:动态投票 1:话题h5组件
int32 biz_type = 13;
// 投票总人数
int64 total = 14;
// 附加卡类型
string card_type = 15;
// 异常提示
string tips = 16;
// 跳转地址
string uri = 17;
// 是否投票
bool is_voted = 18;
// 投票最多多选个数,单选为1
int32 choice_cnt = 19;
// 是否默认选中分享到动态
bool defaule_select_share = 20;
}
// 外露投票
message AdditionVoteDefaule {
// 图片 多张
repeated string cover = 1;
}
// 外露图片类型
message AdditionVotePic {
// 图片投票详情
repeated AdditionVotePicItem item = 1;
}
// 图片投票详情
message AdditionVotePicItem {
// 选项索引,从1开始
int32 opt_idx = 1;
// 图片
string cover = 2;
// 选中状态
bool is_vote = 3;
// 人数
int32 total = 4;
// 占比
double persent = 5;
// 标题文案
string title = 6;
// 是否投票人数最多的选项
bool is_max_option = 7;
}
// 投票状态
enum AdditionVoteState {
addition_vote_state_none = 0; //
addition_vote_state_open = 1; //
addition_vote_state_close = 2; //
}
// 投票类型
enum AdditionVoteType {
addition_vote_type_none = 0; //
addition_vote_type_word = 1; //
addition_vote_type_pic = 2; //
addition_vote_type_default = 3; //
}
// 外露文字类型
message AdditionVoteWord {
// 外露文字投票详情
repeated AdditionVoteWordItem item = 1;
}
// 外露文字投票详情
message AdditionVoteWordItem {
// 选项索引,从1开始
int32 opt_idx = 1;
// 文案
string title = 2;
// 选中状态
bool is_vote = 3;
// 人数
int32 total = 4;
// 占比
double persent = 5;
// 是否投票人数最多的选项
bool is_max_option = 6;
}
// 综合页请求广告所需字段,由客户端-网关透传
message AdParam {
// 综合页请求广告所需字段,由客户端-网关透传
string ad_extra = 1;
// request_id
string request_id = 2;
}
//
message AlumniDynamicsReply {
//
repeated DynamicItem list = 1;
//
string toast = 2;
}
//
message AlumniDynamicsReq {
//
int64 campus_id = 1;
//
int32 first_time = 2;
//
bilibili.app.archive.middleware.v1.PlayerArgs player_args = 3;
//
int32 local_time = 4;
//
int32 page = 5;
//
int32 from_type = 6;
}
//
message CampusBannerInfo {
//
string image = 1;
//
string jump_url = 2;
}
//
message CampusBillboardInternalReq {
//
int64 mid = 1;
//
int64 campus_id = 2;
//
string version_code = 3;
}
//
message CampusBillBoardReply {
//
string title = 1;
//
string help_uri = 2;
//
string campus_name = 3;
//
int64 build_time = 4;
//
string version_code = 5;
//
repeated OfficialItem list = 6;
//
string share_uri = 7;
//
int32 bind_notice = 8;
//
string update_toast = 9;
//
int64 campus_id = 10;
//
CampusFeatureProgress open_progress = 11;
}
//
message CampusBillBoardReq {
//
int64 campus_id = 1;
//
string version_code = 2;
//
bilibili.app.archive.middleware.v1.PlayerArgs player_args = 3;
//
CampusReqFromType from_type = 4;
}
//
message CampusEntryTabReq {
//
int64 campus_id = 1;
}
//
message CampusEntryTabResp {
//
CampusEntryType entry_type = 1;
}
//
enum CampusEntryType {
//
NONE = 0;
//
ENTRY_DYNAMIC = 1;
//
ENTRY_HOME = 2;
}
//
message CampusFeatureProgress {
//
int64 progress_full = 1;
//
int64 progress_achieved = 2;
//
string desc_title = 3;
//
string desc_1 = 4;
//
CampusLabel btn = 5;
}
//
message CampusFeedbackInfo {
//
int32 biz_type = 1;
//
int64 biz_id = 2;
//
int64 campus_id = 3;
//
string reason = 4;
}
//
message CampusFeedbackReply {
//
string message = 1;
}
//
message CampusFeedbackReq {
//
repeated CampusFeedbackInfo infos = 1;
//
int32 from = 2;
}
//
message CampusHomePagesReply {
//
CampusRcmdTop top = 1;
//
CampusTop campus_top = 2;
//
int32 page_type = 3;
}
//
message CampusHomePagesReq {
//
int64 campus_id = 1;
//
string campus_name = 2;
//
double lat = 3;
//
double lng = 4;
//
bilibili.app.archive.middleware.v1.PlayerArgs player_args = 5;
//
int32 page_type = 6;
}
//
enum CampusRcmdReqFrom {
CAMPUS_RCMD_FROM_UNKNOWN = 0;
CAMPUS_RCMD_FROM_HOME_UN_OPEN = 1;
CAMPUS_RCMD_FROM_VISIT_OTHER = 2;
CAMPUS_RCMD_FROM_HOME_MOMENT = 3;
CAMPUS_RCMD_FROM_DYN_MOMENT = 4;
CAMPUS_RCMD_FROM_PAGE_SUBORDINATE_MOMENT = 5;
}
//
enum CampusHomePageType {
//
PAGE_MAJOR = 0;
//
PAGE_SUBORDINATE = 1;
//
PAGE_MAJOR_DETAIL = 2;
}
//
message CampusHomeRcmdTopic {
//
ModuleTitle title = 1;
//
repeated TopicItem topic = 2;
}
//
message CampusInfo {
//
int64 campus_id = 1;
//
string campus_name = 2;
//
string desc = 3;
//
int64 online = 4;
//
string url = 5;
}
//
message CampusLabel {
//
string text = 1;
//
string url = 2;
//
string desc = 3;
}
//
message CampusMateLikeListReply {
//
repeated ModuleAuthor list = 1;
}
//
message CampusMateLikeListReq {
//
int64 dynamic_id = 1;
//
CampusReqFromType from_type = 2;
}
//
enum CampusMngAuditStatus {
//
campus_mng_audit_none = 0;
//
campus_mng_audit_in_process = 1;
//
campus_mng_audit_failed = 2;
}
//
message CampusMngBadge {
//
string title = 1;
//
string badge_url = 2;
//
string upload_hint_msg = 3;
}
//
message CampusMngBasicInfo {
//
int64 campus_id = 1;
//
string campus_name = 2;
//
string hint_msg = 3;
}
//
message CampusMngDetailReply {
//
repeated CampusMngItem items = 1;
//
string top_hint_bar_msg = 2;
//
string bottom_submit_hint_msg = 3;
//
int64 campus_id = 4;
//
string campus_name = 5;
}
//
message CampusMngDetailReq {
//
int64 campus_id = 1;
}
//
message CampusMngItem {
//
int32 audit_status = 1;
//
string audit_message = 2;
//
int32 item_type = 3;
//
string mng_item_id = 4;
//
bool is_del = 5;
// Oneof field:
oneof item {
//
CampusMngBasicInfo basic_info = 6;
//
CampusMngBadge badge = 7;
//
string slogan = 8;
//
CampusMngQuiz quiz = 9;
}
}
//
enum CampusMngItemType {
//
campus_mng_none = 0;
//
campus_mng_basic_info = 1;
//
campus_mng_badge = 2;
//
campus_mng_slogan = 3;
//
campus_mng_quiz = 4;
}
//
message CampusMngQuiz {
//
string title = 1;
//
CampusLabel more_label = 2;
//
string add_label = 3;
//
string submit_label = 4;
//
int64 quiz_count = 5;
}
//
enum CampusMngQuizAction {
//
campus_mng_quiz_act_list = 0;
//
campus_mng_quiz_act_add = 1;
//
campus_mng_quiz_act_del = 2;
}
//
message CampusMngQuizDetail {
//
int64 quiz_id = 1;
//
string question = 2;
//
string correct_answer = 3;
//
repeated string wrong_answer_list = 4;
//
int32 audit_status = 5;
//
string audit_message = 6;
}
//
message CampusMngQuizOperateReply {
//
string toast = 1;
//
repeated CampusMngQuizDetail quiz = 2;
//
int64 quiz_total = 3;
}
//
message CampusMngQuizOperateReq {
//
int32 action = 1;
//
int64 campus_id = 2;
//
repeated CampusMngQuizDetail quiz = 3;