仓库中添加内置的demo

This commit is contained in:
gongxh
2025-07-28 14:26:19 +08:00
parent 43446f031d
commit 65be0498cc
414 changed files with 14456 additions and 0 deletions

12
demo/proto/test.proto Normal file
View File

@@ -0,0 +1,12 @@
syntax = "proto3";
package com.kunpo.proto.test;
// 用户基本信息
message UserInfo {
int32 userId = 1;
string userName = 2;
string nickName = 3;
int32 level = 4;
int64 createTime = 5;
}