mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 23:00:24 +08:00
18 lines
308 B
Protocol Buffer
18 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_file.proto";
|
|
|
|
message IPLibraryArtifact {
|
|
int64 id = 1;
|
|
int64 fileId = 2;
|
|
int64 createdAt = 3;
|
|
bytes metaJSON = 4;
|
|
bool isPublic = 5; // 是否公开
|
|
string name = 6;
|
|
string code = 7;
|
|
|
|
File file = 30; // 文件信息
|
|
} |