mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-25 11:36:35 +08:00
16 lines
252 B
Protocol Buffer
16 lines
252 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message IPItem {
|
|
int64 id = 1;
|
|
string ipFrom = 2;
|
|
string ipTo = 3;
|
|
int64 version = 4;
|
|
int64 expiredAt = 5;
|
|
string reason = 6;
|
|
int64 listId = 7;
|
|
bool isDeleted = 8;
|
|
string type = 9;
|
|
} |