kunpolibrary/demo/proto/test.proto

13 lines
213 B
Protocol Buffer
Raw Normal View History

2025-07-28 14:26:19 +08:00
syntax = "proto3";
package com.kunpo.proto.test;
// 用户基本信息
message UserInfo {
int32 userId = 1;
string userName = 2;
string nickName = 3;
int32 level = 4;
int64 createTime = 5;
}