package ch13;

import java.sql.Timestamp;

public class BoardDataBean {
	/**
	 * @uml.property  name="num"
	 */
	private int num;
	/**
	 * @uml.property  name="writer"
	 */
	private String writer;
	/**
	 * @uml.property  name="subject"
	 */
	private String subject;
	/**
	 * @uml.property  name="email"
	 */
	private String email;
	/**
	 * @uml.property  name="content"
	 */
	private String content;
	/**
	 * @uml.property  name="passwd"
	 */
	private String passwd;
	/**
	 * @uml.property  name="reg_date"
	 */
	private Timestamp reg_date;
	/**
	 * @uml.property  name="readcount"
	 */
	private int readcount;
	/**
	 * @uml.property  name="ip"
	 */
	private String ip;
	/**
	 * @uml.property  name="ref"
	 */
	private int ref;
	/**
	 * @uml.property  name="re_step"
	 */
	private int re_step;
	/**
	 * @uml.property  name="re_level"
	 */
	private int re_level;
	/**
	 * @return  the num
	 * @uml.property  name="num"
	 */
	public int getNum() {
		return num;
	}
	/**
	 * @param num  the num to set
	 * @uml.property  name="num"
	 */
	public void setNum(int num) {
		this.num = num;
	}
	/**
	 * @return  the writer
	 * @uml.property  name="writer"
	 */
	public String getWriter() {
		return writer;
	}
	/**
	 * @param writer  the writer to set
	 * @uml.property  name="writer"
	 */
	public void setWriter(String writer) {
		this.writer = writer;
	}
	/**
	 * @return  the subject
	 * @uml.property  name="subject"
	 */
	public String getSubject() {
		return subject;
	}
	/**
	 * @param subject  the subject to set
	 * @uml.property  name="subject"
	 */
	public void setSubject(String subject) {
		this.subject = subject;
	}
	/**
	 * @return  the email
	 * @uml.property  name="email"
	 */
	public String getEmail() {
		return email;
	}
	/**
	 * @param email  the email to set
	 * @uml.property  name="email"
	 */
	public void setEmail(String email) {
		this.email = email;
	}
	/**
	 * @return  the content
	 * @uml.property  name="content"
	 */
	public String getContent() {
		return content;
	}
	/**
	 * @param content  the content to set
	 * @uml.property  name="content"
	 */
	public void setContent(String content) {
		this.content = content;
	}
	/**
	 * @return  the passwd
	 * @uml.property  name="passwd"
	 */
	public String getPasswd() {
		return passwd;
	}
	/**
	 * @param passwd  the passwd to set
	 * @uml.property  name="passwd"
	 */
	public void setPasswd(String passwd) {
		this.passwd = passwd;
	}
	/**
	 * @return  the reg_date
	 * @uml.property  name="reg_date"
	 */
	public Timestamp getReg_date() {
		return reg_date;
	}
	/**
	 * @param reg_date  the reg_date to set
	 * @uml.property  name="reg_date"
	 */
	public void setReg_date(Timestamp reg_date) {
		this.reg_date = reg_date;
	}
	/**
	 * @return  the readcount
	 * @uml.property  name="readcount"
	 */
	public int getReadcount() {
		return readcount;
	}
	/**
	 * @param readcount  the readcount to set
	 * @uml.property  name="readcount"
	 */
	public void setReadcount(int readcount) {
		this.readcount = readcount;
	}
	/**
	 * @return  the ip
	 * @uml.property  name="ip"
	 */
	public String getIp() {
		return ip;
	}
	/**
	 * @param ip  the ip to set
	 * @uml.property  name="ip"
	 */
	public void setIp(String ip) {
		this.ip = ip;
	}
	/**
	 * @return  the ref
	 * @uml.property  name="ref"
	 */
	public int getRef() {
		return ref;
	}
	/**
	 * @param ref  the ref to set
	 * @uml.property  name="ref"
	 */
	public void setRef(int ref) {
		this.ref = ref;
	}
	/**
	 * @return  the re_step
	 * @uml.property  name="re_step"
	 */
	public int getRe_step() {
		return re_step;
	}
	/**
	 * @param re_step  the re_step to set
	 * @uml.property  name="re_step"
	 */
	public void setRe_step(int re_step) {
		this.re_step = re_step;
	}
	/**
	 * @return  the re_level
	 * @uml.property  name="re_level"
	 */
	public int getRe_level() {
		return re_level;
	}
	/**
	 * @param re_level  the re_level to set
	 * @uml.property  name="re_level"
	 */
	public void setRe_level(int re_level) {
		this.re_level = re_level;
	}
	
	
}
