lendbook.java
来自「Eclips3.2 + mysql5.5 用Struts2编写的图书管理系统」· Java 代码 · 共 60 行
JAVA
60 行
package com.vo;
import java.util.Date;
/**
*
* USER借书记录值对象类
*
*/
public class LendBook {
private int lendid;
private int bookid;
private String bookname;
private Date lendtime;
private Date engagetime;
public int getBookid() {
return bookid;
}
public void setBookid(int bookid) {
this.bookid = bookid;
}
public String getBookname() {
return bookname;
}
public void setBookname(String bookname) {
this.bookname = bookname;
}
public Date getEngagetime() {
return engagetime;
}
public void setEngagetime(Date engagetime) {
this.engagetime = engagetime;
}
public int getLendid() {
return lendid;
}
public void setLendid(int lendid) {
this.lendid = lendid;
}
public Date getLendtime() {
return lendtime;
}
public void setLendtime(Date lendtime) {
this.lendtime = lendtime;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?