|
@@ -17,15 +17,15 @@ public class InputLecture {
|
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
|
|
@Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
@Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
- private String describe;
|
|
|
|
|
|
|
+ private String summary;
|
|
|
|
|
|
|
|
@Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
@Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
private String lectureUrl;
|
|
private String lectureUrl;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
@Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
@Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer hot;
|
|
private Integer hot;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
@Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
@Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer dynamic;
|
|
private Integer dynamic;
|
|
@@ -54,12 +54,12 @@ public class InputLecture {
|
|
|
this.name = name;
|
|
this.name = name;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public String getDescribe() {
|
|
|
|
|
- return describe;
|
|
|
|
|
|
|
+ public String getSummary() {
|
|
|
|
|
+ return summary;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setDescribe(String describe) {
|
|
|
|
|
- this.describe = describe;
|
|
|
|
|
|
|
+ public void setSummary(String summary) {
|
|
|
|
|
+ this.summary = summary;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getLectureUrl() {
|
|
public String getLectureUrl() {
|