111
wang-hao-jie
2022-08-25 d90da0759bd93c7f429f6a20bc835782ad927c02
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.boying.entity;
 
import com.boying.common.BaseEntity;
 
import javax.persistence.Entity;
import javax.persistence.Table;
 
@Table(name = "studyRecord")
@Entity
public class StudyRecord extends BaseEntity {
 
    private Long studyId;
    private Long userId;
    private int time;//分钟
    private String userName;
    private String studyName;
    private int type;//0:pdf  1:mp4
    private int status;//0未学完 1学完了
    private double xueShi;//学时
 
    public Long getStudyId() {
        return studyId;
    }
 
    public void setStudyId(Long studyId) {
        this.studyId = studyId;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public int getTime() {
        return time;
    }
 
    public void setTime(int time) {
        this.time = time;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getStudyName() {
        return studyName;
    }
 
    public void setStudyName(String studyName) {
        this.studyName = studyName;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public int getStatus() {
        return status;
    }
 
    public void setStatus(int status) {
        this.status = status;
    }
 
    public double getXueShi() {
        return xueShi;
    }
 
    public void setXueShi(double xueShi) {
        this.xueShi = xueShi;
    }
}