-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationProjectContent.proto
More file actions
40 lines (36 loc) · 1.49 KB
/
ApplicationProjectContent.proto
File metadata and controls
40 lines (36 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package ApplicationProjectContent;
option java_package = "com.RS.model.project.application";
option java_outer_classname = "AppProjectContent";
message Content{
optional string name =1 [default = "-"];
optional int32 category =2 [default = -1];
optional TeacherInfo teacher = 10;
optional TeacherInfo companyTutor = 11;
optional string startTime = 12 [default = ""];
optional string finishTime = 13 [default = ""];
optional string backgroundDescription = 3 [default = ""];
optional string projectDescription = 15 [default = ""];
optional string goalExpectation = 4 [default = ""];
optional string projectFeatures =5 [default = ""];
optional string equipmentNeeds =6 [default = ""];
optional string financialNeed = 7 [default = ""];
optional int32 projectClass = 8 [default = -1];
optional string projectFinalId =9 [default = "-"];
repeated MemberInfo members = 14;
message TeacherInfo{
optional string name = 1 [default = "-"];
optional string department = 2 [default = "-"];
optional string profession = 3 [default = "-"];
optional string professionalTitle = 4 [default = "-"];
optional string responsibility = 5 [default = "-"];
optional string tel = 6 [default = "-"];
}
message MemberInfo{
optional string name = 1 [default = "-"];
optional string department = 2 [default = "-"];
optional string profession = 3 [default = "-"];
optional string studentID = 4 [default = "-"];
optional string responsibility = 5 [default = "-"];
optional string tel = 6 [default = "-"];
}
}