| 1234567891011121314151617 |
- syntax = "proto3";
- option go_package = "proto/proto_b;pb";
- package b;
- message People {
- string name = 1;
- PageInfo page = 2;
- }
- message PageInfo {
- uint64 total_count = 1;// 总数
- uint64 total_page = 2;// 总页码
- uint64 current_page = 3;// 当前页码
- }
|