派生自 projectDept/qhighschool

Administrator
2022-11-18 b6a92bcd70d2edfb8bf2a2e784b37e1fcd036c10
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package com.qxueyou.scc.teach.subject.model.view;
// Generated 2018-3-19 20:40:08 by Hibernate Tools 5.2.8.Final
 
import java.math.BigDecimal;
import java.util.Date;
 
import javax.persistence.AttributeOverride;
import javax.persistence.AttributeOverrides;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
 
import org.springframework.format.annotation.DateTimeFormat;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
 
/**
 * MySubjectV generated by hbm2java
 */
@Entity
@Table(name = "my_lecture_v")
public class MyLectureV implements java.io.Serializable {
 
    private static final long serialVersionUID = -332455459706490649L;
 
    private MyLectureVId id;
 
    private String chapterId;
    private String lectureType;
    private String lectureName;
    private String userName;
    private String subjectName;
    private Date lectureUpdateTime;
    private BigDecimal progressValue;
    private Double percent;
    private String subjectId;
    private String classId;
    private Date lectureCreateTime;
//    private String status;
 
    public MyLectureV() {
    }
 
    public MyLectureV(MyLectureVId id) {
        this.id = id;
    }
 
    @EmbeddedId
    @AttributeOverrides({@AttributeOverride(name = "userId", column = @Column(name = "USER_ID", length = 32)),
            @AttributeOverride(name = "lectureId", column = @Column(name = "LECTURE_ID", nullable = false, length = 32)),})
    public MyLectureVId getId() {
        return this.id;
    }
 
    public void setId(MyLectureVId id) {
        this.id = id;
    }
 
    @Column(name = "SUBJECT_NAME")
    public String getSubjectName() {
        return subjectName;
    }
 
    public void setSubjectName(String subjectName) {
        this.subjectName = subjectName;
    }
 
    @Column(name = "PROGRESS_VALUE")
    public BigDecimal getProgressValue() {
        return this.progressValue;
    }
 
    public void setProgressValue(BigDecimal progressValue) {
        this.progressValue = progressValue;
    }
 
    @Column(name = "CHAPTER_ID")
    public String getChapterId() {
        return chapterId;
    }
 
    public void setChapterId(String chapterId) {
        this.chapterId = chapterId;
    }
 
    @Column(name = "LECTURE_TYPE")
    public String getLectureType() {
        return lectureType;
    }
 
    public void setLectureType(String lectureType) {
        this.lectureType = lectureType;
    }
 
    @Column(name = "LECTURE_NAME")
    public String getLectureName() {
        return lectureName;
    }
 
    public void setLectureName(String lectureName) {
        this.lectureName = lectureName;
    }
 
    @Column(name = "USER_NAME")
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    @Column(name = "PERCENT")
    public Double getPercent() {
        return percent;
    }
 
    public void setPercent(Double percent) {
        this.percent = percent;
    }
 
    @Column(name = "LECTURE_UPDATE_TIME")
    @Temporal(TemporalType.TIMESTAMP)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonIgnore
    public Date getLectureUpdateTime() {
        return lectureUpdateTime;
    }
 
    public void setLectureUpdateTime(Date lectureUpdateTime) {
        this.lectureUpdateTime = lectureUpdateTime;
    }
 
    @Column(name = "SUBJECT_ID")
    public String getSubjectId() {
        return subjectId;
    }
 
    public void setSubjectId(String subjectId) {
        this.subjectId = subjectId;
    }
 
    @Column(name = "CLASS_ID")
    public String getClassId() {
        return classId;
    }
 
    public void setClassId(String classId) {
        this.classId = classId;
    }
 
    @Column(name = "LECTURE_CREATE_TIME")
    public Date getLectureCreateTime() {
        return lectureCreateTime;
    }
 
    public void setLectureCreateTime(Date lectureCreateTime) {
        this.lectureCreateTime = lectureCreateTime;
    }
 
//    @Column(name = "STATUS")
//    public String getStatus() {
//        return status;
//    }
//
//    public void setStatus(String status) {
//        this.status = status;
//    }
 
 
 
 
}