| package com.dsh.course.feignclient.model; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @author zhibing.pu | 
|  * @date 2023/6/24 17:34 | 
|  */ | 
| @Data | 
| @ApiModel | 
| public class StoreOfCourseVo { | 
|   | 
|     @ApiModelProperty("课程id") | 
|     private Integer courseId; | 
|   | 
|     @ApiModelProperty("课程名称+门店名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty("封面图") | 
|     private String coverDrawing; | 
|   | 
|     @ApiModelProperty("上课时间") | 
|     private String classStartTime; | 
|   | 
|     @ApiModelProperty("已报名人数") | 
|     private Integer applicantsNumber; | 
|   | 
|     @ApiModelProperty("包含课时数") | 
|     private Integer classHours; | 
|   | 
|     @ApiModelProperty("价格") | 
|     private Double originalPrice; | 
| } |