📄 vieworderlineitemform.java
字号:
/**
*
*/
package com.eshop.form;
/**
* 订单项目ID FORM
* @author jonson
*
*/
public class ViewOrderLineItemForm {
private long linenum;
private String itemid;
private long quantity;
private float unitprice;
private String status;
private String productid;
private String attr1;
private String attr2;
private String attr3;
private String attr5;
private float totalprice;//总价格
/**
* @return the attr1
*/
public String getAttr1() {
return attr1;
}
/**
* @param attr1 the attr1 to set
*/
public void setAttr1(String attr1) {
this.attr1 = attr1;
}
/**
* @return the attr2
*/
public String getAttr2() {
return attr2;
}
/**
* @param attr2 the attr2 to set
*/
public void setAttr2(String attr2) {
this.attr2 = attr2;
}
/**
* @return the attr3
*/
public String getAttr3() {
return attr3;
}
/**
* @param attr3 the attr3 to set
*/
public void setAttr3(String attr3) {
this.attr3 = attr3;
}
/**
* @return the attr5
*/
public String getAttr5() {
return attr5;
}
/**
* @param attr5 the attr5 to set
*/
public void setAttr5(String attr5) {
this.attr5 = attr5;
}
/**
* @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 productid
*/
public String getProductid() {
return productid;
}
/**
* @param productid the productid to set
*/
public void setProductid(String productid) {
this.productid = productid;
}
/**
* @return the quantity
*/
public long getQuantity() {
return quantity;
}
/**
* @param quantity the quantity to set
*/
public void setQuantity(long quantity) {
this.quantity = quantity;
}
/**
* @return the status
*/
public String getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return the totalprice
*/
public float getTotalprice() {
return totalprice;
}
/**
* @param totalprice the totalprice to set
*/
public void setTotalprice(float totalprice) {
this.totalprice = totalprice;
}
/**
* @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 + -