productmodel.java

来自「电子商务小站点,用到struts+hibernate」· Java 代码 · 共 90 行

JAVA
90
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?