44323
2023-11-27 e9085eb620dcae1ceae24bc8b70e1a6bca228b15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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;
}