实现基础的通知媒介管理

This commit is contained in:
刘祥超
2021-04-05 20:48:39 +08:00
parent ff57c19211
commit 6a90b4a926
30 changed files with 8676 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message MessageMedia {
int64 id = 1;
string type = 2;
string name = 3;
string description = 4;
string userDescription = 5;
bool isOn = 6;
}