abractsection.java

来自「一个网上购物商城系统」· Java 代码 · 共 82 行

JAVA
82
字号
//Source file: D:\\tarena\\data\\AbractSection.java

package tarena.data;

/**
 * 版块抽象类
 */
public class AbractSection {

	/**
	 * 分类名称
	 */
	protected String name;

	/**
	 * 分类ID
	 */
	protected Integer id;

	/**
	 * 类型
	 */
	protected Integer type;

	/**
	 * 分类图片的地址
	 */
	protected String photo;

	/**
	 * 父类id
	 */
	protected Integer pid;

	/**
	 * @roseuid 4908234700DA
	 */
	public AbractSection() {

	}

	public Integer getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getPhoto() {
		return photo;
	}

	public void setPhoto(String photo) {
		this.photo = photo;
	}

	public Integer getPid() {
		return pid;
	}

	public void setPid(Integer pid) {
		this.pid = pid;
	}

	public Integer getType() {
		return type;
	}

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

⌨️ 快捷键说明

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