29 lines
596 B
Protocol Buffer
29 lines
596 B
Protocol Buffer
syntax = "proto3";
|
|
package race;
|
|
import "common/modify_info.proto";
|
|
//import "common/page_query.proto";
|
|
|
|
option java_package = "club.joylink.rtss.vo.race";
|
|
|
|
message RaceSeasonVO {
|
|
int64 id = 1;
|
|
string code = 2;//编号
|
|
RaceSeason.Group group = 3;//组别
|
|
string term = 4;//年度(根据实际划分方式,不一定就是年份)
|
|
common.ModifyInfoVO modify_info = 5;
|
|
}
|
|
|
|
message RaceSeasonCreateVO {
|
|
string code = 1;
|
|
RaceSeason.Group group = 2;
|
|
string term = 3; //非必填
|
|
}
|
|
|
|
|
|
message RaceSeason{
|
|
enum Group {
|
|
Unknown = 0;
|
|
ZZ = 1; //中职
|
|
GZ = 2; //高职
|
|
}
|
|
} |