mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-07 07:10:25 +08:00
16 lines
433 B
Protocol Buffer
16 lines
433 B
Protocol Buffer
syntax = "proto3";
|
||
option go_package = "./pb";
|
||
|
||
package pb;
|
||
|
||
message HTTPCacheTaskKey {
|
||
int64 id = 1; // 缓存键ID
|
||
int64 taskId = 2; // 任务ID
|
||
string key = 3; // 缓存键
|
||
string type = 4; // 操作类型:purge|fetch
|
||
string keyType = 5; // 键类型:key|prefix
|
||
bool isDone = 6; // 是否已完成
|
||
bool isDoing = 9; // 是否执行中
|
||
bytes errorsJSON = 7; // 错误信息
|
||
int64 nodeClusterId = 8; // 所属集群ID
|
||
} |