관리 메뉴

통계 & 데이터 그리고 이야기

com.ja.freeboard.vo_BoardVo 본문

SpringFramework

com.ja.freeboard.vo_BoardVo

NoMadikia 2020. 5. 19. 15:24
728x90
반응형
SMALL
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
package com.ja.freeboard.vo;
 
import java.util.Date;
 
public class BoardVo {
    private int board_no;
    private int member_no;
    private String board_title;
    private String board_content;
    private int board_readcount;
    private Date board_writedate;
    
    
    public BoardVo() {
        super();
    }
    public BoardVo(int board_no, int member_no, String board_title, String board_content, int board_readcount,
            Date board_writedate) {
        super();
        this.board_no = board_no;
        this.member_no = member_no;
        this.board_title = board_title;
        this.board_content = board_content;
        this.board_readcount = board_readcount;
        this.board_writedate = board_writedate;
    }
    public int getBoard_no() {
        return board_no;
    }
    public void setBoard_no(int board_no) {
        this.board_no = board_no;
    }
    public int getMember_no() {
        return member_no;
    }
    public void setMember_no(int member_no) {
        this.member_no = member_no;
    }
    public String getBoard_title() {
        return board_title;
    }
    public void setBoard_title(String board_title) {
        this.board_title = board_title;
    }
    public String getBoard_content() {
        return board_content;
    }
    public void setBoard_content(String board_content) {
        this.board_content = board_content;
    }
    public int getBoard_readcount() {
        return board_readcount;
    }
    public void setBoard_readcount(int board_readcount) {
        this.board_readcount = board_readcount;
    }
    public Date getBoard_writedate() {
        return board_writedate;
    }
    public void setBoard_writedate(Date board_writedate) {
        this.board_writedate = board_writedate;
    }
    
    
    
    
    
    
    
    
    
}
 
 
cs
728x90
Comments