📄 orderdetail.java
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
// Source File Name: OrderDetail.java
package com.keyshop.shop.order.model;
import com.keyshop.pub.model.PubBean;
// Referenced classes of package com.keyshop.shop.order.model:
// Order
public class OrderDetail extends PubBean
{
String orderId;
String productId;
String productName;
double unitPrice;
double totalPrice;
double listPrice;
String unitType;
int quantity;
String orderDate;
Order omorder;
public OrderDetail()
{
orderId = "";
productId = "";
productName = "";
unitPrice = 0.0D;
totalPrice = 0.0D;
listPrice = 0.0D;
unitType = "";
quantity = 0;
orderDate = "";
omorder = null;
}
public String getUnitType()
{
return unitType;
}
public int getQuantity()
{
return quantity;
}
public String getProductId()
{
return productId;
}
public void setProductId(String productId)
{
this.productId = productId;
}
public void setProductName(String productName)
{
this.productName = productName;
}
public void setQuantity(int quantity)
{
this.quantity = quantity;
}
public void setUnitType(String unitType)
{
this.unitType = unitType;
}
public String getProductName()
{
return productName;
}
public String getOrderId()
{
return orderId;
}
public void setOrderId(String orderId)
{
this.orderId = orderId;
}
public String getOrderDate()
{
return orderDate;
}
public void setOrderDate(String orderDate)
{
this.orderDate = orderDate;
}
public Order getOmorder()
{
return omorder;
}
public void setOmorder(Order omorder)
{
this.omorder = omorder;
}
public double getUnitPrice()
{
return unitPrice;
}
public double getTotalPrice()
{
return totalPrice;
}
public void setTotalPrice(double totalPrice)
{
this.totalPrice = totalPrice;
}
public void setUnitPrice(double unitPrice)
{
this.unitPrice = unitPrice;
}
public void setListPrice(double listPrice)
{
this.listPrice = listPrice;
}
public double getListPrice()
{
return listPrice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -