go_dreamfactory/pb/proto/notify/notify_db.proto
2022-07-13 11:25:37 +08:00

12 lines
481 B
Protocol Buffer

syntax = "proto3";
option go_package = ".;pb";
//系统公告数据结构
message DBSystemNotify {
string id = 1; //数据公告Id
string title = 2; //公告标题
string content = 3; //公告内容
bool istop = 4; //是否置顶
int64 ctime = 5; //创建时间
int64 rtime = 6; //发布时间
}