增加注释

Signed-off-by: yinzijian <yinzijian@haomozhixing.onaliyun.com>
This commit is contained in:
yinzijian 2025-10-27 16:08:16 +08:00
parent 7b67a7dd8b
commit ddc13fb408
1 changed files with 24 additions and 24 deletions

View File

@ -247,36 +247,36 @@ message CrossRunningPhaseRequest {
message CrossRunningPhaseResponse {
int32 code = 1;
string msg = 2;
repeated List data = 3;
repeated List data = 3; //
message List {
int32 citycode = 1;
string crossid = 2;
string jj_crossid = 3;
int32 scheduleid = 4;
string schedule_week = 5;
string schedule_name = 6;
int32 citycode = 1; //
string crossid = 2; //ID
string jj_crossid = 3;
int32 scheduleid = 4; //
string schedule_week = 5; //1,2,3
string schedule_name = 6; //
repeated tps_list tps = 7;
}
message tps_list {
string tp_start = 1;
string tp_end = 2;
int32 planid = 3;
string plan_name = 4;
string control_mode = 5;
int32 cycle = 6;
int32 coord_phaseid = 7;
int32 offset = 8;
repeated stages stage_list = 9;
string tp_start = 1; //
string tp_end = 2; //
int32 planid = 3; //
string plan_name = 4; //
string control_mode = 5; //
int32 cycle = 6; //
int32 coord_phaseid = 7; //ID
int32 offset = 8; //
repeated stages stage_list = 9; //
}
message stages {
int32 stageid = 1;
int32 stage_duration = 2;
string stage_name = 3;
int32 green = 4;
int32 yellow = 5;
int32 allred = 6;
string phases = 7;
string phases_name = 8;
int32 stageid = 1; //ID
int32 stage_duration = 2; //
string stage_name = 3; //
int32 green = 4; //绿
int32 yellow = 5; //
int32 allred = 6; //
string phases = 7; //ID集合1345
string phases_name = 8; //,,,
int32 min_green = 9;
int32 max_green = 10;
}