📄 billform.java
字号:
/*
* Created on 2006-4-27
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package cn.com.tym.blank.form;
import org.apache.struts.validator.ValidatorActionForm;
/**
* @author jack_booth
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class BillForm extends ValidatorActionForm{
private String billTitle=null; //标题
private String urlPath=null; //链接路径
private String urlPhoto=null; //图片路径
private String photohight=null; //高度
private String photoweight=null; //宽度
public String getBillTitle() {
return billTitle;
}
public void setBillTitle(String billTitle) {
this.billTitle = billTitle;
}
public String getPhotohight() {
return photohight;
}
public void setPhotohight(String photohight) {
this.photohight = photohight;
}
public String getPhotoweight() {
return photoweight;
}
public void setPhotoweight(String photoweight) {
this.photoweight = photoweight;
}
public String getUrlPath() {
return urlPath;
}
public void setUrlPath(String urlPath) {
this.urlPath = urlPath;
}
public String getUrlPhoto() {
return urlPhoto;
}
public void setUrlPhoto(String urlPhoto) {
this.urlPhoto = urlPhoto;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -