15 lines
218 B
Protocol Buffer
15 lines
218 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ItemInfo.proto";
|
|
|
|
message Order{
|
|
int32 Id = 1;
|
|
repeated int32 ChessId = 2;
|
|
int32 type = 3;
|
|
repeated ItemInfo Items = 4;
|
|
}
|