?? orderformbean.java
字號(hào):
package bean;
public class OrderFormBean
{
private int orderId;
private int userId;
private int bookId;
private int amount;
private String orderData;
private int money;
public int getOrderId()
{
return orderId;
}
public int getUserId()
{
return userId;
}
public int getBookId()
{
return bookId;
}
public int getAmount()
{
return amount;
}
public String getOrderData()
{
return orderData;
}
public int getMoney()
{
return money;
}
public void setOrderId(int orderId)
{
this.orderId = orderId;
}
public void setUserId(int userId)
{
this.userId = userId;
}
public void setBookId(int bookId)
{
this.bookId = bookId;
}
public void setAmount(int amount)
{
this.amount = amount;
}
public void setOrderData(String orderData)
{
this.orderData = orderData;
}
public void setMoney(int money)
{
this.money = money;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -