大赛管理功能

This commit is contained in:
tiger_zhou 2024-02-29 16:13:41 +08:00
parent 84a8e80a5b
commit 64053645db

View File

@ -18,14 +18,15 @@ message RaceScoringRuleListVO{
}
message Rule {
message Rule{
repeated Unit units = 1;
//
message Unit {
string text = 1; //
uint32 scene_step_id = 2; //ID
uint32 score = 3; //
string worker = 4;//
string criteria = 5;//
string name = 1; //
uint32 score = 2; //
string content = 3;//
string criteria = 4;//
repeated Unit children = 5; //
}
}
}