-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathReplyVO.java
More file actions
51 lines (46 loc) · 931 Bytes
/
ReplyVO.java
File metadata and controls
51 lines (46 loc) · 931 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
47
48
49
50
51
package com.jh.vo;
import java.util.Date;
public class ReplyVO {
private Integer rno;
private Integer bno;
private String replytext;
private String replyer;
private Date regdate;
private Date updatedate;
public Integer getRno() {
return rno;
}
public void setRno(Integer rno) {
this.rno = rno;
}
public Integer getBno() {
return bno;
}
public void setBno(Integer bno) {
this.bno = bno;
}
public String getReplytext() {
return replytext;
}
public void setReplytext(String replytext) {
this.replytext = replytext;
}
public String getReplyer() {
return replyer;
}
public void setReplayer(String replyer) {
this.replyer = replyer;
}
public Date getRegdate() {
return regdate;
}
public void setRegdate(Date regdate) {
this.regdate = regdate;
}
public Date getUpdatedate() {
return updatedate;
}
public void setUpdatedate(Date updatedate) {
this.updatedate = updatedate;
}
}