12 lines
481 B
Protocol Buffer
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; //发布时间
|
|
} |