派生自 projectDept/qhighschool

胡仁荣
2023-08-04 2174b22bbbb45284765a23b8189df59583c65d29
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
85
86
package com.qxueyou.scc.media.model;
 
import java.io.Serializable;
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
 
 
@Entity
@Table(name="video_play")
@NamedQuery(name="VideoPlay.findAll", query="SELECT m FROM VideoPlay m")
public class VideoPlay implements Serializable {
 
    private static final long serialVersionUID = 5377239966386327023L;
    
    @Id
    @Column(name="video_play_id", unique=true, nullable=false, length=65)
    private String videoPlayId;
    
    @Column(name="video_id")
    private String videoId;
    
    @Column(name="user_id")
    private String userId;
    
    private Integer progress;
    
    @Column(name="CREATE_TIME")
    private Date createTime;
    
    @Column(name="UPDATE_TIME")
    private Date updateTime;
 
    public String getVideoPlayId() {
        return videoPlayId;
    }
 
    public void setVideoPlayId(String videoPlayId) {
        this.videoPlayId = videoPlayId;
    }
 
    public String getVideoId() {
        return videoId;
    }
 
    public void setVideoId(String videoId) {
        this.videoId = videoId;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public Integer getProgress() {
        return progress;
    }
 
    public void setProgress(Integer progress) {
        this.progress = progress;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
    
}