mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-08-01 21:08:41 +00:00
13 lines
213 B
Protocol Buffer
13 lines
213 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package com.kunpo.proto.test;
|
|
|
|
// 用户基本信息
|
|
message UserInfo {
|
|
int32 userId = 1;
|
|
string userName = 2;
|
|
string nickName = 3;
|
|
int32 level = 4;
|
|
int64 createTime = 5;
|
|
}
|