📄 sampledocumentform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package cn.bway.foreigntrade.repertory.sample.document.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import cn.bway.common.form.BaseForm;
/**
* MyEclipse Struts
* Creation date: 03-20-2008
*
* XDoclet definition:
* @struts.form name="sampleForm"
*/
public class SampledocumentForm extends BaseForm {
/*
* Generated fields
*/
private String id;
private String clientname;
private String linkman;
private String times;
private String froms;
private String sales;
private String checks;
// Constructors
/** default constructor */
public SampledocumentForm() {
}
/** full constructor */
public SampledocumentForm(String clientname, String linkman, String times, String froms, String sales, String checks) {
this.clientname = clientname;
this.linkman = linkman;
this.times = times;
this.froms = froms;
this.sales = sales;
this.checks = checks;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getClientname() {
return this.clientname;
}
public void setClientname(String clientname) {
this.clientname = clientname;
}
public String getLinkman() {
return this.linkman;
}
public void setLinkman(String linkman) {
this.linkman = linkman;
}
public String getTimes() {
return this.times;
}
public void setTimes(String times) {
this.times = times;
}
public String getFroms() {
return this.froms;
}
public void setFroms(String froms) {
this.froms = froms;
}
public String getSales() {
return this.sales;
}
public void setSales(String sales) {
this.sales = sales;
}
public String getChecks() {
return this.checks;
}
public void setChecks(String checks) {
this.checks = checks;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -