RecentVodVO.java
2.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package com.subsidy.vo.project;
import lombok.Data;
@Data
public class RecentVodVO {
private Long id;
private Long matchId;
private Long teacherId;
private Long collegeId;
private String projectGroup;
/**
* 课程名称
*/
private String courseName;
/**
* 课程编码
*/
private String courseCode;
/**
* 课程性质
*/
private String courseType;
/**
* 开课年级
*/
private String grade;
/**
* 课程总学时
*/
private Integer courseHour;
/**
* 理论学时
*/
private Integer theoryHour;
/**
* 实践学时
*/
private Integer practiseHour;
/**
* 分数
*/
private Integer score;
/**
* 授课年数
*/
private String years;
private String startDate1;
private String endDate1;
private String startDate2;
private String endDate2;
/**
* 最近两轮学生总人数
*/
private Integer studentTotalNum;
/**
* 学期
*/
private String semester;
/**
* 开始时间
*/
private String startDate;
/**
* 结束时间
*/
private String endDate;
/**
* 授课学时
*/
private Integer teachHours;
/**
* 授课年级
*/
private String teachGrade;
/**
* 班级人数
*/
private Integer classTotalNum;
/**
* 整体课程团队教学情况
*/
private String courseTeam;
/**
* 课程概述
*/
private String courseDesc;
/**
* 课程目标
*/
private String courseTarget;
/**
* 课程内容与教学安排
*/
private String courseContent;
/**
* 教材及教辅材料
*/
private String teachFiles;
/**
* 教研成果及教学改革
*/
private String teachResult;
/**
* 课程特色与创新点
*/
private String courseFeature;
/**
* 项目状态
*/
private String projectStatus;
/**
* 项目进度
*/
private String projectSchedule;
/**
* 审核状态
*/
private String projectReview;
/**
* 分配状态
*/
private String projectAssigned;
/**
* 盖章pdf附件
*/
private String attachment;
/**
* 视频
*/
private String vodUrl;
/**
* 视频上传时间
*/
private String uploadDate;
}