31 lines
725 B
Protocol Buffer
31 lines
725 B
Protocol Buffer
// 该文件由工具自动生成,不要手动修改该文件
|
|
|
|
package project;
|
|
|
|
import "proto_type.proto" ;
|
|
|
|
|
|
// 跑马灯信息
|
|
message p_ticker {
|
|
required int64 ticker_id = 1; // 跑马灯唯一id
|
|
required int64 ticker_cid = 2; // 跑马灯配置id
|
|
repeated p_skv args = 3; // 参数
|
|
repeated p_ticker_period period = 4; // 跑马灯周期
|
|
}
|
|
|
|
// 格位信息
|
|
message p_ticker_period {
|
|
required int64 start_time = 1; // 开始时间
|
|
required int64 end_time = 2; // 结束时间
|
|
}
|
|
|
|
// 请求信息:协议号:14_1(c2s)
|
|
message ticker_info_c2s {
|
|
}
|
|
|
|
// 请求信息:协议号:14_1(s2c)
|
|
message ticker_info_s2c {
|
|
required int64 is_all = 1; // 1-全推0-推更新
|
|
repeated p_ticker list = 2; // 数据列表
|
|
}
|