📄 productmodel.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: ProductModel.java
package com.keyshop.shop.product.model;
import com.keyshop.pub.model.PubBean;
public class ProductModel extends PubBean
{
String productId;
String tempId;
String modelName;
double modelPrice;
String specValue1;
String specValue2;
public ProductModel()
{
productId = "";
tempId = "";
modelName = "";
modelPrice = 0.0D;
specValue1 = "";
specValue2 = "";
}
public String getModelName()
{
return modelName;
}
public String getProductId()
{
return productId;
}
public String getSpecValue1()
{
return specValue1;
}
public String getSpecValue2()
{
return specValue2;
}
public void setSpecValue2(String specValue2)
{
this.specValue2 = specValue2;
}
public void setProductId(String productId)
{
this.productId = productId;
}
public void setModelName(String modelName)
{
this.modelName = modelName;
}
public void setSpecValue1(String specValue1)
{
this.specValue1 = specValue1;
}
public String getTempId()
{
return tempId;
}
public void setTempId(String tempId)
{
this.tempId = tempId;
}
public double getModelPrice()
{
return modelPrice;
}
public void setModelPrice(double modelPrice)
{
this.modelPrice = modelPrice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -