Notice
Recent Posts
Recent Comments
Link
«   2025/03   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

CVO 본문

JSP/BBS

CVO

GAWON 2023. 6. 9. 17:48
package org.joonzis.ex;

import java.sql.Date;

public class CVO {
	private int c_idx, b_idx;
	private String writer, content, pw, ip;
	private Date reg_date;
	
	public CVO() {}

	public CVO(int c_idx, int b_idx, String writer, String content, String pw, String ip, Date reg_date) {
		super();
		this.c_idx = c_idx;
		this.b_idx = b_idx;
		this.writer = writer;
		this.content = content;
		this.pw = pw;
		this.ip = ip;
		this.reg_date = reg_date;
	}

	public int getC_idx() {
		return c_idx;
	}

	public void setC_idx(int c_idx) {
		this.c_idx = c_idx;
	}

	public int getB_idx() {
		return b_idx;
	}

	public void setB_idx(int b_idx) {
		this.b_idx = b_idx;
	}

	public String getWriter() {
		return writer;
	}

	public void setWriter(String writer) {
		this.writer = writer;
	}

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public String getPw() {
		return pw;
	}

	public void setPw(String pw) {
		this.pw = pw;
	}

	public String getIp() {
		return ip;
	}

	public void setIp(String ip) {
		this.ip = ip;
	}

	public Date getReg_date() {
		return reg_date;
	}

	public void setReg_date(Date reg_date) {
		this.reg_date = reg_date;
	}
}

'JSP > BBS' 카테고리의 다른 글

bbs.xml  (0) 2023.06.09
DBService  (0) 2023.06.09
Paging  (0) 2023.06.09
BVO  (0) 2023.06.09
BDao  (0) 2023.06.09