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

WON.dev

GuestbookVO 본문

JSP/GuestBook

GuestbookVO

GAWON 2023. 6. 2. 17:56
package org.joonzis.ex;

import java.sql.Date;

public class GuestbookVO {
	private int idx;
	private String writer;
	private String email;
	private String pw;
	private String filename;
	private String title;
	private String content;
	private Date reg_date;

	public GuestbookVO() {
	}

	public GuestbookVO(int idx, String writer, String email, String pw, String filename, String title, String content,
			Date reg_date) {
		super();
		this.idx = idx;
		this.writer = writer;
		this.pw = pw;
		this.filename = filename;
		this.title = title;
		this.content = content;
		this.reg_date = reg_date;
	}

	public int getIdx() {
		return idx;
	}

	public void setIdx(int idx) {
		this.idx = idx;
	}

	public String getWriter() {
		return writer;
	}

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

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getPw() {
		return pw;
	}

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

	public String getFilename() {
		return filename;
	}

	public void setFilename(String filename) {
		this.filename = filename;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getContent() {
		return content;
	}

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

	public Date getReg_date() {
		return reg_date;
	}

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

}

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

index  (0) 2023.06.02
download  (0) 2023.06.02
GuestbookDao  (0) 2023.06.02
sqlmap.xml  (0) 2023.06.02
guestbook.xml  (0) 2023.06.02