?? urlaccount.java
字號(hào):
package com.bean;
import org.apache.struts.action.ActionForm;
public class UrlAccount extends ActionForm{
private int urlAccountId;
private int urlId;
private int delFlag;
private int accountId;
public UrlAccount(){};
public void setUrlAccountId(int urlAccountId){
this.urlAccountId=urlAccountId;
}
public int getUrlAccountId(){
return this.urlAccountId;
}
public void setUrlId(int urlId){
this.urlId=urlId;
}
public int getUrlId(){
return this.urlId;
}
public void setDelFlag(int delFlag){
this.delFlag=delFlag;
}
public int getDelFlag(){
return this.delFlag;
}
public void setAccountId(int accountId){
this.accountId=accountId;
}
public int getAccountId(){
return this.accountId;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -