?? linkform.java
字號(hào):
package com.yhcms.manage.info.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* <p>Title:系統(tǒng)友情鏈接Form</p>
* <li>提交友情鏈接模塊</li>
* <br><b>CopyRight: yyhweb[由由華網(wǎng)]</b>
* @author stephen
* @version YH-2.0
*/
public class LinkForm extends ActionForm{
private static final long serialVersionUID = 1L;
private String action = "";
private int id = 0;
private String name = "";
private String url = "";
private String type = "";
private String content = "";
private String logo = "";
private String master = "";
private String contact = "";
private int sort = 0;
private String checked = "";
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public String getChecked() {
return checked;
}
public void setChecked(String checked) {
this.checked = checked;
}
public String getContact() {
return contact;
}
public void setContact(String contact) {
this.contact = contact.trim();
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content.trim();
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getLogo() {
return logo;
}
public void setLogo(String logo) {
this.logo = logo.trim();
}
public String getMaster() {
return master;
}
public void setMaster(String master) {
this.master = master.trim();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name.trim();
}
public int getSort() {
return sort;
}
public void setSort(int sort) {
this.sort = sort;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url.trim();
}
public ActionErrors validate(ActionMapping actionmapping,HttpServletRequest request){
return null;
}
public void reset(ActionMapping actionmapping,HttpServletRequest request){
id = 0;
name = "";
url = "";
type = "";
content = "";
logo = "";
master = "";
contact = "";
sort = 0;
checked = "";
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -