(미니 프로젝트) 6. 도서관 관리 시스템 – 도서 관리 테이블
1. 북보 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) … Read more