|
@@ -5,6 +5,7 @@ import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.experimental.Accessors;
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@Data
|
|
@Data
|
|
@@ -23,13 +24,16 @@ public class InstructorVO {
|
|
@Schema(description = "教学理念")
|
|
@Schema(description = "教学理念")
|
|
private String teachingPhilosophy;
|
|
private String teachingPhilosophy;
|
|
@Schema(description = "好评率")
|
|
@Schema(description = "好评率")
|
|
- private String goodRate;
|
|
|
|
|
|
+ private BigDecimal goodRate;
|
|
@Schema(description = "订单数")
|
|
@Schema(description = "订单数")
|
|
private String orderCount;
|
|
private String orderCount;
|
|
@Schema(description = "授课人数")
|
|
@Schema(description = "授课人数")
|
|
- private String teachingCount;
|
|
|
|
|
|
+ private Integer teachingCount;
|
|
@Schema(description = "擅长说明")
|
|
@Schema(description = "擅长说明")
|
|
private String excelMsg;
|
|
private String excelMsg;
|
|
|
|
+ @Schema(description = "培训项目")
|
|
|
|
+ private String trainingPrograms;
|
|
|
|
+ private List<String> list;
|
|
@Schema(description = "课程列表")
|
|
@Schema(description = "课程列表")
|
|
private List<CourseInfoVO> courseList;
|
|
private List<CourseInfoVO> courseList;
|
|
|
|
|
|
@@ -43,11 +47,13 @@ public class InstructorVO {
|
|
@Schema(description = "课程名称")
|
|
@Schema(description = "课程名称")
|
|
private String name;
|
|
private String name;
|
|
@Schema(description = "课程价格")
|
|
@Schema(description = "课程价格")
|
|
- private String sellingPrice;
|
|
|
|
|
|
+ private BigDecimal sellingPrice;
|
|
@Schema(description = "课程类型")
|
|
@Schema(description = "课程类型")
|
|
private String type;
|
|
private String type;
|
|
@Schema(description = "课程简介")
|
|
@Schema(description = "课程简介")
|
|
private String intro;
|
|
private String intro;
|
|
|
|
+ @Schema(description = "课程数量")
|
|
|
|
+ private int count;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|