[mini project] 6. 도서관 관리 시스템 - 책 관리 테이블
·
프로젝트/Mini project
1. BookVo package book; public class BookVo { private int booknum; private String title; private String writer; private int stock_b; public BookVo () {} public BookVo(int booknum, String title, String writer, int stock_b) { super(); this.booknum = booknum; this.title = title; this.writer = writer; this.stock_b = stock_b; } public BookVo(int booknum, String title, String writer) { super(); this.b..