|
@@ -60,7 +60,7 @@ public class SearchVO{
|
|
@Data
|
|
@Data
|
|
@Accessors(chain = true)
|
|
@Accessors(chain = true)
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@EqualsAndHashCode(callSuper = false)
|
|
- @Schema(description="教练课程信息返回参数")
|
|
|
|
|
|
+ @Schema(description="课程信息返回参数")
|
|
public static class CourseInfoVO {
|
|
public static class CourseInfoVO {
|
|
@Schema(description = "主键id")
|
|
@Schema(description = "主键id")
|
|
private String id;
|
|
private String id;
|
|
@@ -68,10 +68,9 @@ public class SearchVO{
|
|
private String name;
|
|
private String name;
|
|
@Schema(description = "课程价格")
|
|
@Schema(description = "课程价格")
|
|
private String sellingPrice;
|
|
private String sellingPrice;
|
|
- @Schema(description = "课程类型")
|
|
|
|
- private String type;
|
|
|
|
- @Schema(description = "课程简介")
|
|
|
|
- private String intro;
|
|
|
|
|
|
+ @Schema(description = "年售")
|
|
|
|
+ private String sales;
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
@Data
|
|
@Data
|
|
@@ -83,6 +82,8 @@ public class SearchVO{
|
|
private String id;
|
|
private String id;
|
|
@Schema(description = "名称")
|
|
@Schema(description = "名称")
|
|
private String name;
|
|
private String name;
|
|
|
|
+ @Schema(description = "门店名称")
|
|
|
|
+ private String placeName;
|
|
@Schema(description = "课程售价")
|
|
@Schema(description = "课程售价")
|
|
private BigDecimal sellingPrice;
|
|
private BigDecimal sellingPrice;
|
|
@Schema(description = "图片")
|
|
@Schema(description = "图片")
|
|
@@ -101,7 +102,7 @@ public class SearchVO{
|
|
@Schema(description = "距离(KM)")
|
|
@Schema(description = "距离(KM)")
|
|
private double km;
|
|
private double km;
|
|
@Schema(description = "赛事是否结束")
|
|
@Schema(description = "赛事是否结束")
|
|
- private boolean isRegistrationOpen;
|
|
|
|
|
|
+ private boolean registrationOpen;
|
|
}
|
|
}
|
|
|
|
|
|
@Data
|
|
@Data
|
|
@@ -168,6 +169,8 @@ public class SearchVO{
|
|
private String categoryId;
|
|
private String categoryId;
|
|
@Schema(description = "是否有票")
|
|
@Schema(description = "是否有票")
|
|
private boolean ticketWhether;
|
|
private boolean ticketWhether;
|
|
|
|
+ @Schema(description = "课程")
|
|
|
|
+ private List<CourseInfoVO> course;
|
|
}
|
|
}
|
|
@Data
|
|
@Data
|
|
@Accessors(chain = true)
|
|
@Accessors(chain = true)
|