All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.infop.entity.Role Maven / Gradle / Ivy

package cn.infop.entity;

public class Role {

	private String name;
	private String describes;
	private boolean checked;

	public Role() {
	}

	public Role(String name, String describes) {
		this.name = name;
		this.describes = describes;
	}

	public Role(String name, String describes, boolean checked) {
		this.name = name;
		this.describes = describes;
		this.checked = checked;
	}

	public String getName() {
		return name;
	}

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

	public String getDescribes() {
		return describes;
	}

	public void setDescribes(String describes) {
		this.describes = describes;
	}

	public boolean isChecked() {
		return checked;
	}

	public void setChecked(boolean checked) {
		this.checked = checked;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy