| package com.dsh.activity.feignclient.course.model; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @author zhibing.pu | 
|  * @date 2023/7/12 9:58 | 
|  */ | 
| @Data | 
| public class Course { | 
|     private Integer id; | 
|     /** | 
|      * 课程名称 | 
|      */ | 
|     private String name; | 
|     /** | 
|      * 类型(1=课后练习,2=运动教学视频,3=器材教学视频) | 
|      */ | 
|     private Integer type; | 
|     /** | 
|      * 介绍 | 
|      */ | 
|     private String introduce; | 
|     /** | 
|      * 封面图 | 
|      */ | 
|     private String coverDrawing; | 
|     /** | 
|      * 介绍图 | 
|      */ | 
|     private String introductionDrawing; | 
|     /** | 
|      * 课程视频 | 
|      */ | 
|     private String courseVideo; | 
|     /** | 
|      * 状态(1=正常,2=冻结,3=删除) | 
|      */ | 
|     private Integer state; | 
|     /** | 
|      * 添加时间 | 
|      */ | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|     private Date insertTime; | 
| } |