abstractsrole.java

来自「一个用ajax做的树行框架」· Java 代码 · 共 63 行

JAVA
63
字号
package com.support.hibernate.table;

/**
 * AbstractSRole generated by MyEclipse Persistence Tools
 */

public abstract class AbstractSRole implements java.io.Serializable {

	// Fields

	private String id;
	private String name;
	private String description;
	private String departmentId;

	// Constructors

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

	/** full constructor */
	public AbstractSRole(String name, String description, String departmentId) {
		this.name = name;
		this.description = description;
		this.departmentId = departmentId;
	}

	// Property accessors

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

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

	public String getName() {
		return this.name;
	}

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

	public String getDescription() {
		return this.description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public String getDepartmentId() {
		return this.departmentId;
	}

	public void setDepartmentId(String departmentId) {
		this.departmentId = departmentId;
	}

}

⌨️ 快捷键说明

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