实现基础的通知媒介管理

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,10 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message MessageRecipientGroup {
int64 id = 1;
string name = 2;
bool isOn = 3;
}