?? book.java
字號:
package com.lib.vo;
/**
* @hibernate.class
* table="T_Book"
*/
public class Book {
private Long bookUID;
private String bookName;
private Integer qty;
private Integer totalQty;
public Book() {
}
/**
* @hibernate.id
* generator-class="hilo"
* unsaved-value=null
* column="BookUID"
* @return Long
*/
public Long getBookUID() {
return bookUID;
}
public void setBookUID(Long bookUID) {
this.bookUID = bookUID;
}
/**
* @hibernate.property
* column="BookName"
* @return String
*/
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
/**
* @hibernate.property
* column="Qty"
* @return Integer
*/
public Integer getQty() {
return qty;
}
public void setQty(Integer qty) {
this.qty = qty;
}
/**
* @hibernate.property
* column="TotalQty"
* @return Integer
*/
public Integer getTotalQty() {
return totalQty;
}
public void setTotalQty(Integer totalQty) {
this.totalQty = totalQty;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -