📄 lineitem.java
字号:
/**
*
*/
package com.eshop.vo;
/**
* 商品列表数据库映射
* @author jonson
*
*/
public class LineItem extends BaseVo {
private long orderid;//订单ID
private long linenum;//数量
private String itemid;//项目id
private long quantity;//数量
private float unitprice;//单价
private OrderStatus orderStatus;//订单状态
private Item item;
/**
* @return the item
*/
public Item getItem() {
return item;
}
/**
* @param item the item to set
*/
public void setItem(Item item) {
this.item = item;
}
/**
* @return the orderStatus
*/
public OrderStatus getOrderStatus() {
return orderStatus;
}
/**
* @param orderStatus the orderStatus to set
*/
public void setOrderStatus(OrderStatus orderStatus) {
this.orderStatus = orderStatus;
}
/**
* @return the itemid
*/
public String getItemid() {
return itemid;
}
/**
* @param itemid the itemid to set
*/
public void setItemid(String itemid) {
this.itemid = itemid;
}
/**
* @return the linenum
*/
public long getLinenum() {
return linenum;
}
/**
* @param linenum the linenum to set
*/
public void setLinenum(long linenum) {
this.linenum = linenum;
}
/**
* @return the orderid
*/
public long getOrderid() {
return orderid;
}
/**
* @param orderid the orderid to set
*/
public void setOrderid(long orderid) {
this.orderid = orderid;
}
/**
* @return the quantity
*/
public long getQuantity() {
return quantity;
}
/**
* @param quantity the quantity to set
*/
public void setQuantity(long quantity) {
this.quantity = quantity;
}
/**
* @return the unitprice
*/
public float getUnitprice() {
return unitprice;
}
/**
* @param unitprice the unitprice to set
*/
public void setUnitprice(float unitprice) {
this.unitprice = unitprice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -