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

📄 typegoods.java

📁 点餐系统 非常好的 jsp mysql 我也是别人那里下载来的
💻 JAVA
字号:
package com.accp.dao;

import java.util.HashSet;
import java.util.Set;

/**
 * TypeGoods generated by MyEclipse Persistence Tools
 */

public class TypeGoods implements java.io.Serializable {

	// Fields

	private Integer tid;

	private String tname;

	private String tstandby1;

	private String tstandby2;

	private Set goodses = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public TypeGoods(String tname) {
		this.tname = tname;
	}

	/** full constructor */
	public TypeGoods(String tname, String tstandby1, String tstandby2,
			Set goodses) {
		this.tname = tname;
		this.tstandby1 = tstandby1;
		this.tstandby2 = tstandby2;
		this.goodses = goodses;
	}

	// Property accessors

	public Integer getTid() {
		return this.tid;
	}

	public void setTid(Integer tid) {
		this.tid = tid;
	}

	public String getTname() {
		return this.tname;
	}

	public void setTname(String tname) {
		this.tname = tname;
	}

	public String getTstandby1() {
		return this.tstandby1;
	}

	public void setTstandby1(String tstandby1) {
		this.tstandby1 = tstandby1;
	}

	public String getTstandby2() {
		return this.tstandby2;
	}

	public void setTstandby2(String tstandby2) {
		this.tstandby2 = tstandby2;
	}

	public Set getGoodses() {
		return this.goodses;
	}

	public void setGoodses(Set goodses) {
		this.goodses = goodses;
	}

}

⌨️ 快捷键说明

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