Java教程

java语言实现购物系统Productinfo代码

本文主要是介绍java语言实现购物系统Productinfo代码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

package po;

/**
 * TbProductinfo entity. @author MyEclipse Persistence Tools
 */

public class TbProductinfo implements java.io.Serializable {

    // Fields

    private Integer id;
    private String name;
    private String description;
    private Double baseprice;
    private Double sellprice;
    private Integer count;

    // Constructors

    /** default constructor */
    public TbProductinfo() {
    }

    /** minimal constructor */
    public TbProductinfo(String name, String description) {
        this.name = name;
        this.description = description;
    }

    /** full constructor */
    public TbProductinfo(String name, String description, Double baseprice,
            Double sellp

这篇关于java语言实现购物系统Productinfo代码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!