package lj.model;

import java.io.Serializable;

/**
 * 商品信息
 * @author samlv
 *
 */
public class GoodInfo implements Serializable {

	private String goodId; // 商品编号
	private String goodName; // 商品名称
	private String goodTaste; //商品口味
	private double goodPrice; // 商品价格

	public String getGoodId() {
		return goodId;
	}

	public String getGoodName() {
		return goodName;
	}
	
	public String getGoodTaste(){
		return goodTaste;
	}
	
	public double getGoodPrice() {
		return goodPrice;
	}

	public void setGoodId(String goodId) {
		this.goodId = goodId;
	}

	public void setGoodName(String goodName) {
		this.goodName = goodName;
	}

	public void setGoodTaste(String goodTaste) {
		this.goodTaste = goodTaste;
	}
	
	public void setGoodPrice(double goodPrice) {
		this.goodPrice = goodPrice;
	}

	// 空的构造方法,不能少
	public GoodInfo() {
	}

	public GoodInfo(String goodId, String goodName, String goodTaste, double goodPrice) {
		this.goodId = goodId;
		this.goodName = goodName;
		this.goodTaste = goodTaste;
		this.goodPrice = goodPrice;
	}
	
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (!(obj instanceof GoodInfo))
			return false;
		GoodInfo other = (GoodInfo) obj;
		if (goodId == null) {
			if (other.goodId != null)
				return false;
		} else if (!goodId.equals(other.goodId))
			return false;
		return true;
	}

}
最近下载更多
一磕小橙子  LV3 6月20日
yuanyuan23  LV1 5月30日
qtingchh  LV3 5月3日
a2418735612  LV1 1月4日
xdjxdjxdj  LV1 2023年3月27日
蹇金金  LV7 2023年3月15日
你们的代码都是我的了  LV16 2022年12月13日
1379585889  LV11 2022年12月13日
panhhuii  LV1 2022年6月28日
最近浏览更多
暂无贡献等级
曾显示  LV6 7月7日
liyan54188  LV2 6月25日
一磕小橙子  LV3 6月20日
ahhhahhhahhh  LV1 6月17日
郭宇航裹裹  LV5 6月9日
yuanyuan23  LV1 5月30日
zhanghongyu 5月13日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友