⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 goods.java

📁 C2C购物网站 含有数据库 解压后readme.txt里有详细说明
💻 JAVA
字号:
package com.shop;

import org.apache.struts.action.ActionForm;

/**
 * Goods generated by MyEclipse Persistence Tools
 */

public class Goods extends ActionForm implements java.io.Serializable {

	// Fields

	private Integer id;

	private Integer mid;

	private String kind;

	private String brand;

	private String type;

	private String introduce;

	private Double price;

	private Double nowprice;

	private String picture;

	private String intime;

	private Integer saletol;

	// Constructors

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

	/** full constructor */
	public Goods(Integer mid, String kind, String brand, String type,
			String introduce, Double price, Double nowprice, String picture,
			String intime, Integer saletol) {
		this.mid = mid;
		this.kind = kind;
		this.brand = brand;
		this.type = type;
		this.introduce = introduce;
		this.price = price;
		this.nowprice = nowprice;
		this.picture = picture;
		this.intime = intime;
		this.saletol = saletol;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public Integer getMid() {
		return this.mid;
	}

	public void setMid(Integer mid) {
		this.mid = mid;
	}

	public String getKind() {
		return this.kind;
	}

	public void setKind(String kind) {
		this.kind = kind;
	}

	public String getBrand() {
		return this.brand;
	}

	public void setBrand(String brand) {
		this.brand = brand;
	}

	public String getType() {
		return this.type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getIntroduce() {
		return this.introduce;
	}

	public void setIntroduce(String introduce) {
		this.introduce = introduce;
	}

	public Double getPrice() {
		return this.price;
	}

	public void setPrice(Double price) {
		this.price = price;
	}

	public Double getNowprice() {
		return this.nowprice;
	}

	public void setNowprice(Double nowprice) {
		this.nowprice = nowprice;
	}

	public String getPicture() {
		return this.picture;
	}

	public void setPicture(String picture) {
		this.picture = picture;
	}

	public String getIntime() {
		return this.intime;
	}

	public void setIntime(String intime) {
		this.intime = intime;
	}

	public Integer getSaletol() {
		return this.saletol;
	}

	public void setSaletol(Integer saletol) {
		this.saletol = saletol;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -