11 lines
254 B
Protocol Buffer
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 用于测试包序列化大小
// 如果两个int都是0那么序列化出来是0字节也需要正常反序列化
syntax = "proto3";
package main;
option go_package = "./spb";
message TestStruct {
uint32 StatusA = 1;
uint32 StatusB = 2;
}