实现IP库制品管理API、自动更新程序

This commit is contained in:
刘祥超
2022-08-23 14:54:53 +08:00
parent f851212a55
commit 225d03a65f
11 changed files with 5157 additions and 3303 deletions

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message IPLibraryArtifact {
int64 id = 1;
int64 fileId = 2;
int64 createdAt = 3;
bytes metaJSON = 4;
bool isPublic = 5;
string name = 6;
string code = 7;
}