大赛管理功能
This commit is contained in:
parent
bab005c36a
commit
79c926c676
|
@ -43,9 +43,9 @@ message RacePaperModuleVO{
|
|||
message PaperModule{
|
||||
string module_name = 1;
|
||||
int32 duration = 2;
|
||||
|
||||
repeated Group group = 3; //任务分组(此分组目前看仅为称呼)
|
||||
int64 module_score_rule_id = 4;
|
||||
int32 custom_module_id = 5;
|
||||
}
|
||||
//分组
|
||||
message Group{
|
||||
|
|
|
@ -19,12 +19,6 @@ message RaceSeasonCreateVO {
|
|||
string term = 3; //非必填
|
||||
}
|
||||
|
||||
/*message RaceSeasonQueryVO {
|
||||
common.PageQueryVO page = 1;
|
||||
string code = 2;
|
||||
RaceSeason.Group group = 3;
|
||||
string term = 4;
|
||||
}*/
|
||||
|
||||
message RaceSeason{
|
||||
enum Group {
|
||||
|
|
|
@ -48,13 +48,15 @@ message RaceTaskBind{
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
message RaceTaskQuery{
|
||||
common.PageQueryVO page = 1;
|
||||
}*/
|
||||
message RacePaperModuleTask{
|
||||
int32 custom_module_id = 1;
|
||||
repeated PaperModuleGroup module_group = 2;
|
||||
|
||||
message RaceTaskTreeVO {
|
||||
repeated RaceTaskChildVO treeData = 1;
|
||||
message PaperModuleGroup{
|
||||
string group_name = 1;
|
||||
repeated RaceTaskChildVO treeData = 2;
|
||||
repeated PaperModuleGroup module_group = 3;
|
||||
}
|
||||
}
|
||||
|
||||
message RaceTaskChildVO {
|
||||
|
@ -69,4 +71,4 @@ message RaceTaskChildVO {
|
|||
// string ruleName = 9;
|
||||
int64 parent_id = 8; //父任务的ID
|
||||
repeated RaceTaskChildVO children = 9; // 子任务
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue