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

上一篇:CSS——CSS网站优化三大标签(title,description,keyword)


下一篇:vue富文本编辑器不能正常显示解决办法