-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCM.java
More file actions
46 lines (41 loc) · 801 Bytes
/
CM.java
File metadata and controls
46 lines (41 loc) · 801 Bytes
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
package Class;
import java.sql.Date;
//import java.sql.Date;
public class CM {
//private int CMNO;//评论ID
private int UNO;//用户ID
private String MNO;//电影编号
private String COMM;//评论内容
private int CType;//评论类型 想看/看过
private Date CTime;//评论时间
public int getUNO() {
return UNO;
}
public void setUNO(int uNO) {
UNO = uNO;
}
public String getMNO() {
return MNO;
}
public void setMNO(String mNO) {
MNO = mNO;
}
public String getCOMM() {
return COMM;
}
public void setCOMM(String cOMM) {
COMM = cOMM;
}
public int getCType() {
return CType;
}
public void setCType(int cType) {
CType = cType;
}
public Date getCTime() {
return CTime;
}
public void setCTime(Date cTime) {
CTime = cTime;
}
}