Files
Web_BLSKafka_Server_Prod/duoge/person.proto

10 lines
151 B
Protocol Buffer
Raw Normal View History

2025-11-21 08:48:01 +08:00
syntax = "proto3";
package tutorial;
// 定义一个Person消息类型
message Person {
string name = 1;
int32 id = 2;
string email = 3;
}