[mini project] 8. 도서관 관리 시스템 - 대여 테이블
·
프로젝트/Mini project
1. BookRentVo package BookRent; import java.sql.Date; public class BookRentVo { private int num; private String id; private int booknum; private Date rent_date; private Date return_date; private int 연체일; public BookRentVo(int num, String id, int booknum, Date rent_date, Date return_date) { this.num = num; this.id = id; this.booknum = booknum; this.rent_date = rent_date; this.return_date = return..