1 Star 0 Fork 0

陈天/taibak

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
dbtask.proto 689 Bytes
Copy Edit Raw Blame History
陈天 authored 2022-04-30 21:31 +08:00 . [*]整合后的第一次合并
syntax = "proto3";
package rpc;
message DbTaskRequest {
message Ftp {
string dip = 1; // 命令
int64 port = 2;
string ac = 3;
string pd = 4;
}
string local = 1;
string dbname = 2;
int64 port = 3;
string dip = 4; // 命令
string ac = 5;
string pd = 6;
int32 dtype = 7;
string sqlpath = 8;
int32 timeout = 9; // 任务执行超时时间
int64 id = 10; // 执行任务唯一ID
repeated Ftp ftp = 11;
}
message SomeOtherRequest {
DbTaskRequest requst =1;
}
message DbTaskResponse {
string output = 1; // 命令标准输出
string error = 2; // 命令错误
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/hakwolf/taibak.git
git@gitee.com:hakwolf/taibak.git
hakwolf
taibak
taibak
000f062082a1

Search