authorityvo.java

来自「OBPM是一个开源」· Java 代码 · 共 112 行

JAVA
112
字号
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 + =
减小字号Ctrl + -
显示快捷键?