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

📄 shop.java

📁 1.配置java环境
💻 JAVA
字号:
/**
 * @(#)Shop.java
 * 
 * @author soda E-mail:junaisy@163.com
 * @version 1.0
 * <br>Program Name: FlashNetGame
 * <br>Date: 2007-4-18
 */
package org.game.model;
import java.util.Set;
import java.util.HashSet;

public class Shop 
{
	private int shopId;
	private String shopName;
	private Set<ShopGoods> shopGoods = new HashSet<ShopGoods>();
	
	public Shop()
	{
		
	}
	public Shop(String shopName )
	{
		this.shopName=shopName;
	}
	public void setShopId(int shopId)
	{
		this.shopId = shopId;
	}
	
	public void setShopName(String shopName) {
		this.shopName = shopName; 
	}

	public void setShopGoods(Set<ShopGoods> shopGoods) {
		this.shopGoods = shopGoods; 
	}

	public int getShopId() {
		return (this.shopId); 
	}

	public String getShopName() {
		return (this.shopName); 
	}

	public Set<ShopGoods> getShopGoods() {
		return (this.shopGoods); 
	}
}

⌨️ 快捷键说明

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