go_dreamfactory/pb/proto/pack/pack_db.proto
2022-06-13 11:01:02 +08:00

16 lines
637 B
Protocol Buffer

syntax = "proto3";
option go_package = ".;pb";
//背包格子
message DB_UserItemData {
string GridId = 1; //背包格子Id
string UId = 2; //用户id
bool IsEmpty = 3; //是否是空格子
int32 ItemId = 4; //存放物品的Id
uint32 Amount = 5; //存放物品的数量
int64 CTime = 6; //物品获取时间
int64 ETime = 7; //物品过期时间
bool IsNewItem = 8; //是否是新的
}