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

📄 abstractsuserappend.java

📁 一个用ajax做的树行框架
💻 JAVA
字号:
package com.support.hibernate.table;

/**
 * AbstractSUserAppend generated by MyEclipse Persistence Tools
 */

public abstract class AbstractSUserAppend implements java.io.Serializable {

	// Fields

	private String id;
	private String userId;
	private String headImage;
	private String parentId;
	private String sign;
	private String otherInfo;

	// Constructors

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

	/** minimal constructor */
	public AbstractSUserAppend(String userId) {
		this.userId = userId;
	}

	/** full constructor */
	public AbstractSUserAppend(String userId, String headImage,
			String parentId, String sign, String otherInfo) {
		this.userId = userId;
		this.headImage = headImage;
		this.parentId = parentId;
		this.sign = sign;
		this.otherInfo = otherInfo;
	}

	// Property accessors

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

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

	public String getUserId() {
		return this.userId;
	}

	public void setUserId(String userId) {
		this.userId = userId;
	}

	public String getHeadImage() {
		return this.headImage;
	}

	public void setHeadImage(String headImage) {
		this.headImage = headImage;
	}

	public String getParentId() {
		return this.parentId;
	}

	public void setParentId(String parentId) {
		this.parentId = parentId;
	}

	public String getSign() {
		return this.sign;
	}

	public void setSign(String sign) {
		this.sign = sign;
	}

	public String getOtherInfo() {
		return this.otherInfo;
	}

	public void setOtherInfo(String otherInfo) {
		this.otherInfo = otherInfo;
	}

}

⌨️ 快捷键说明

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