Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
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

BVO.java 본문

JSP/JSP.sideproject

BVO.java

GAWON 2023. 6. 23. 12:43
package org.joonzis.vo;

import java.sql.Date;

public class BVO {
	private int b_idx, hit;
	private String writer, title, content, pw, ip, filename;
	private Date reg_date;
	
	public BVO() {}

	public BVO(int b_idx, int hit, String writer, String title, String content, String pw, String ip, String filename,
			Date reg_date) {
		super();
		this.b_idx = b_idx;
		this.hit = hit;
		this.writer = writer;
		this.title = title;
		this.content = content;
		this.pw = pw;
		this.ip = ip;
		this.filename = filename;
		this.reg_date = reg_date;
	}

	public int getB_idx() {
		return b_idx;
	}

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

	public int getHit() {
		return hit;
	}

	public void setHit(int hit) {
		this.hit = hit;
	}

	public String getWriter() {
		return writer;
	}

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

	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 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 String getFilename() {
		return filename;
	}

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

	public Date getReg_date() {
		return reg_date;
	}

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

'JSP > JSP.sideproject' 카테고리의 다른 글

MVO.java  (0) 2023.06.23
CVO.java  (0) 2023.06.23
MemServiceImpl.java  (0) 2023.06.23
MemService.java  (0) 2023.06.23
CommentServiceImpl.java  (0) 2023.06.23