28 lines
602 B
Protocol Buffer
28 lines
602 B
Protocol Buffer
// 该文件由工具自动生成,不要手动修改该文件
|
|
|
|
package project;
|
|
|
|
import "proto_type.proto" ;
|
|
|
|
|
|
// 设置:协议号:11_1(c2s)
|
|
message setting_info_c2s {
|
|
}
|
|
|
|
// 设置:协议号:11_1(s2c)
|
|
message setting_info_s2c {
|
|
repeated p_kv settings = 1; // 设置列表
|
|
}
|
|
|
|
// 切换按钮:协议号:11_2(c2s)
|
|
message setting_switch_c2s {
|
|
optional int64 id = 1; // 设置id
|
|
optional int32 status = 2; // 状态1-打开0-关闭
|
|
}
|
|
|
|
// 切换按钮:协议号:11_2(s2c)
|
|
message setting_switch_s2c {
|
|
optional int64 id = 1; // 设置id
|
|
optional int32 status = 2; // 状态1-打开0-关闭
|
|
}
|