📄 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 + -