forked from zhanghuanhao/LibrarySystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8171ff8
commit 2023516
Showing
47 changed files
with
1,616 additions
and
1,648 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
src/main/java/com/library/domain/Admin.java → src/main/java/com/library/bean/Admin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package com.library.bean; | ||
|
||
import java.io.Serializable; | ||
import java.util.Date; | ||
|
||
public class Lend implements Serializable { | ||
|
||
private long ser_num; | ||
private long book_id; | ||
private long reader_id; | ||
private Date lend_date; | ||
private Date back_date; | ||
|
||
public long getReaderId() { | ||
return reader_id; | ||
} | ||
|
||
public void setReaderId(long reader_id) { | ||
this.reader_id = reader_id; | ||
} | ||
|
||
public long getBookId() { | ||
return book_id; | ||
} | ||
|
||
public void setBookId(long book_id) { | ||
this.book_id = book_id; | ||
} | ||
|
||
public void setSer_num(long ser_num) { | ||
this.ser_num = ser_num; | ||
} | ||
|
||
public Date getBackDate() { | ||
return back_date; | ||
} | ||
|
||
public void setBackDate(Date back_date) { | ||
this.back_date = back_date; | ||
} | ||
|
||
public Date getLendDate() { | ||
return lend_date; | ||
} | ||
|
||
public void setLendDate(Date lend_date) { | ||
this.lend_date = lend_date; | ||
} | ||
|
||
public long getSer_num() { | ||
return ser_num; | ||
} | ||
} |
18 changes: 9 additions & 9 deletions
18
...n/java/com/library/domain/ReaderCard.java → ...ain/java/com/library/bean/ReaderCard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...n/java/com/library/domain/ReaderInfo.java → ...ain/java/com/library/bean/ReaderInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ava/com/library/web/ReaderController.java → .../library/controller/ReaderController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.