123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- syntax = "proto3";
- // package声明符,用来防止不同的消息类型有命名冲突
- package pb_v1;
- // 用于生成指定语言go的包名称
- option go_package = "property-system-gateway/pb/v1";
- message VoteTopicChoiceItem {
- string flag = 1;
- string text = 2;
- }
- message VoteTopic {
- // 题目类型 1 填空题 2 单选题 3 多选题 4 评分题
- int32 topic_type = 1;
- string topic_name = 2;
- // 总星数,当为评分题时有效
- int32 star = 3;
- // 是否必选
- bool must = 4;
- // 题目编号
- int64 number = 5;
- // 选择题的选项
- repeated VoteTopicChoiceItem choice_items = 6;
- }
- message VoteAddRequest {
- string title = 1;
- repeated string pics = 2;
- int64 start = 3;
- int64 end = 4;
- int64 garden_id = 5;
- repeated VoteTopic topics = 6;
- }
- message VoteAddReply {
- }
- message VoteUpdateRequest {
- int64 id = 1;
- string title = 2;
- repeated string pics = 3;
- int64 start = 4;
- int64 end = 5;
- int64 garden_id = 6;
- repeated VoteTopic topics = 7;
- }
- message VoteUpdateReply {
- }
- message VoteDelRequest {
- int64 id = 1;
- int64 garden_id = 2;
- }
- message VoteDelReply {
- }
- message VoteListRequest {
- int64 garden_id = 1;
- string title = 2;
- int64 page = 3;
- int64 page_size = 4;
- }
- message VoteItem {
- string title = 1;
- repeated string pics = 2;
- int64 start = 3;
- int64 end = 4;
- int64 id = 5;
- int64 created_at = 6;
- repeated VoteTopic topics = 7;
- int64 user_count = 8;
- }
- message VoteListReply {
- int64 total = 1;
- int64 page = 2;
- repeated VoteItem list = 3;
- }
- message VoteTopicAnswer {
- // 题目编号
- int64 number = 1;
- // 题目类型
- int32 topic_type = 2;
- // 问答题回答,当题目类型为问答题时有效
- repeated string completion_answers = 3;
- // 选择题回答,当题目类型为选择题时有效
- repeated string choice_answers = 4;
- // 评分题回答,当题目类型为评分题时有效
- int32 star_answers = 5;
- }
- message VoteAddAnswerRequest {
- int64 id = 1;
- int64 garden_id = 2;
- int64 uid = 3;
- repeated VoteTopicAnswer answers = 4;
- }
- message VoteAddAnswerReply {
- }
- message VoteResultListRequest {
- int64 id = 1;
- int64 garden_id = 2;
- int64 page = 3;
- int64 page_size = 4;
- int64 number = 5;
- }
- message VoteResultData {
- // 题目类型 1 填空题 2 单选题 3 多选题 4 评分题
- int32 topic_type = 1;
- string topic_name = 2;
- // 总星数,当为评分题时有效
- int32 star = 3;
- // 是否必选
- bool must = 4;
- // 题目编号
- int64 number = 5;
- // 选择题的选项
- repeated VoteTopicChoiceItem choice_items = 6;
- // 问答题回答,当题目类型为问答题时有效
- repeated string completion_answers = 7;
- // 选择题回答,当题目类型为选择题时有效
- repeated string choice_answers = 8;
- // 评分题回答,当题目类型为评分题时有效
- int32 star_answers = 9;
- }
- message VoteResultUserAnswerItem {
- // 用户uid
- int64 uid = 1;
- VoteResultData answer = 2;
- string user_name = 3;
- }
- message VoteResultListReply {
- int64 page = 1;
- int64 total = 2;
- repeated VoteResultUserAnswerItem list = 3;
- }
- message VoteResultStatisticRequest {
- int64 id = 1;
- int64 garden_id = 2;
- }
- message VoteResultStatisticChoice {
- // 选择选项标识
- string flag = 1;
- // 该选项被选的用户
- int32 count = 2;
- string text = 3;
- }
- message VoteResultStatisticStar {
- // 评分星数
- int32 star = 1;
- // 评该星数的用户数量
- int32 count = 2;
- }
- message VoteResultStatisticItem {
- // 题目类型 1 填空题 2 单选题 3 多选题 4 评分题
- int32 topic_type = 1;
- string topic_name = 2;
- // 总星数,当为评分题时有效
- int32 star = 3;
- // 是否必选
- bool must = 4;
- // 题目编号
- int64 number = 5;
- // 选择题的选项内容
- repeated VoteTopicChoiceItem choice_items = 6;
- // 选择题的选项回答统计,当题目类型为选择题时有效
- repeated VoteResultStatisticChoice choice_statistic = 7;
- // 评分题的分数回答统计,当题目类型为评分题时有效
- repeated VoteResultStatisticStar star_statistic = 8;
- // 平均分, 当题目类型为评分题时有效
- double star_avg = 9;
- }
- message VoteResultStatisticReply {
- // 题目统计
- repeated VoteResultStatisticItem list = 1;
- }
- message VoteListForHouseholdRequest {
- int64 garden_id = 1;
- int64 uid = 2;
- int64 page = 3;
- int64 page_size = 4;
- string title = 5;
- }
- message VoteTopicForHouseholdItem {
- // 题目类型 1 填空题 2 单选题 3 多选题 4 评分题
- int32 topic_type = 1;
- string topic_name = 2;
- // 总星数,当为评分题时有效
- int32 star = 3;
- // 是否必选
- bool must = 4;
- // 题目编号
- int64 number = 5;
- // 选择题的选项
- repeated VoteTopicChoiceItem choice_items = 6;
- // 当已投票时,以下字段有效
- // 问答题回答,当题目类型为问答题时有效
- repeated string completion_answers = 7;
- // 选择题回答,当题目类型为选择题时有效
- repeated string choice_answers = 8;
- // 评分题回答,当题目类型为评分题时有效
- int32 star_answers = 9;
- }
- message VoteListForHouseholdItem {
- // 标题
- string title = 1;
- repeated string pics = 2;
- int64 start = 3;
- int64 end = 4;
- int64 id = 5;
- int64 created_at = 6;
- // 是否已投票
- bool answered = 7;
- // 题目类容和用户回答
- repeated VoteTopicForHouseholdItem topics = 8;
- }
- message VoteListForHouseholdReply {
- int64 page = 1;
- int64 total = 2;
- repeated VoteListForHouseholdItem list = 3;
- }
|