[mini project] 5. 도서관 관리 시스템 - 게시판 테이블
·
프로젝트/Mini project
1. BoardVo package board; import java.sql.Date; public class Boardvo { private int num; private Date w_date; private String writer; private String title; private String content; public Boardvo() {} public Boardvo(int num, Date w_date, String writer, String title, String content) { super(); this.num = num; this.w_date = w_date; this.writer = writer; this.title = title; this.content = content; } p..