[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..
[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..
[mini project] 4. 도서관 관리 시스템 - 회원 테이블
·
프로젝트/Mini project
이제 완성 된 테이블을 하나씩 공개 해봐야지. 설렌다 1. MemberVo package member; public class MemberVo { private String id; private String pwd; private String name; private String phoneNumber; public MemberVo() { } public MemberVo(String id, String pwd, String name, String number) { this.id = id; this.pwd = pwd; this.name = name; this.phoneNumber = number; } public String getId() { return id; } public void setId(Strin..
[mini project] 3.
·
프로젝트/Mini project
병원까지 다녀오고 다음 날 모든 조원의 컴퓨터에서 프로그램이 잘 작동 되는지 확인 하려고 옹기종기 모여 실행을 하는데 어? 뭐야.. 야.. 자바.. 설명해봐.. 이거 뭔데. ... 금요일이기도 하고 머리를 많이 써서 그런 걸 수도 있으니까 대충 술 한잔 마시면서 리프레시 하는 것도 나쁘지 않지 우리에게는 토요일이랑 일요일이 있는 ㅊ..청춘이니까; 대충 주말 갈아서 완성 시키겠다는 뜻. 무슨 회인지 모르지만 회랑 짬뽕이랑 튀김이랑 냠냠냠 먹고 토요일에 디스코드로 다 집합해서 열심히 완성 시켰다. 이게 바로 리프레시의 힘.
해니01_15
'프로젝트/Mini project' 카테고리의 글 목록 (2 Page)