?? authorityvo.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;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -