| 123456789101112131415161718192021 |
- // message结构的属性名请使用 驼峰小写字母开始
- syntax = "proto3";
- option go_package = "/pb";
- package pb;
- import "base_type.proto";
- // 招募数据
- message Recruit {
- // 免费招募已使用次数
- int32 freeUsedNum = 1;
- // 最后一次招募时间(utc毫秒)
- int64 lastTime = 2;
- }
- // [响应] 英雄招募
- message RecruitResponse {
- repeated Asset rewards = 1;
- Recruit recruit = 2;
- }
|