mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
17 lines
277 B
Protocol Buffer
17 lines
277 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_message_task.proto";
|
|
|
|
// 消息任务日志
|
|
message MessageTaskLog {
|
|
int64 id = 1;
|
|
int64 createdAt = 2;
|
|
bool isOk = 3;
|
|
string error = 4;
|
|
string response = 5;
|
|
MessageTask messageTask = 6;
|
|
}
|