|
@@ -67,6 +67,12 @@ public class ObeCourseOutlineResult {
|
|
|
@ApiModelProperty("专业名称")
|
|
|
private String professionalName;
|
|
|
|
|
|
+ @ApiModelProperty("课程目标数量")
|
|
|
+ private Integer targetCount;
|
|
|
+
|
|
|
+ @ApiModelProperty("权重设置状态")
|
|
|
+ private Boolean weightSetting;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -194,4 +200,20 @@ public class ObeCourseOutlineResult {
|
|
|
public void setProfessionalName(String professionalName) {
|
|
|
this.professionalName = professionalName;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getTargetCount() {
|
|
|
+ return targetCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTargetCount(Integer targetCount) {
|
|
|
+ this.targetCount = targetCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getWeightSetting() {
|
|
|
+ return weightSetting;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWeightSetting(Boolean weightSetting) {
|
|
|
+ this.weightSetting = weightSetting;
|
|
|
+ }
|
|
|
}
|