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

📄 authorityvo.java

📁 OBPM是一个开源
💻 JAVA
字号:
package cn.myapps.base.dao;

import java.io.Serializable;



/**
 * The base authority object.
 */
public class AuthorityVO implements Serializable {
	
	private static final long serialVersionUID = -6154864360834619207L;

	private String id;

	private String authdocid;

	private String authfrom;

	private int authpolicy;

	private String authtype;

	private String authvalue;

	private String owner;
	/**
	 * @return Returns the authdocid.
	 */
	public String getAuthdocid() {
		return authdocid;
	}
	/**
	 * @param authdocid The authdocid to set.
	 */
	public void setAuthdocid(String authdocid) {
		this.authdocid = authdocid;
	}
	/**
	 * @return Returns the authfrom.
	 */
	public String getAuthfrom() {
		return authfrom;
	}
	/**
	 * @param authfrom The authfrom to set.
	 */
	public void setAuthfrom(String authfrom) {
		this.authfrom = authfrom;
	}
	/**
	 * @return Returns the authpolicy.
	 */
	public int getAuthpolicy() {
		return authpolicy;
	}
	/**
	 * @param authpolicy The authpolicy to set.
	 */
	public void setAuthpolicy(int authpolicy) {
		this.authpolicy = authpolicy;
	}
	/**
	 * @return Returns the authtype.
	 */
	public String getAuthtype() {
		return authtype;
	}
	/**
	 * @param authtype The authtype to set.
	 */
	public void setAuthtype(String authtype) {
		this.authtype = authtype;
	}
	/**
	 * @return Returns the authvalue.
	 */
	public String getAuthvalue() {
		return authvalue;
	}
	/**
	 * @param authvalue The authvalue to set.
	 */
	public void setAuthvalue(String authvalue) {
		this.authvalue = authvalue;
	}
	/**
	 * @return Returns the id.
	 */
	public String getId() {
		return id;
	}
	/**
	 * @param id The id to set.
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return Returns the owner.
	 */
	public String getOwner() {
		return owner;
	}
	/**
	 * @param owner The owner to set.
	 */
	public void setOwner(String owner) {
		this.owner = owner;
	}
}

⌨️ 快捷键说明

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