📄 huanhudianform.java
字号:
package com.luoin.struts.form;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
public class HuanhudianForm extends ActionForm{
private Integer id;
private Integer info;
private String popedom;
private String customercompany;
private String customer;
private String tel;
private String address;
private String customerId;
private Date date;
private String qujingli;
private String dingId;
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
return null;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getInfo() {
return this.info;
}
public void setInfo(Integer info) {
this.info = info;
}
public String getPopedom() {
return this.popedom;
}
public void setPopedom(String popedom) {
this.popedom = popedom;
}
public String getCustomercompany() {
return this.customercompany;
}
public void setCustomercompany(String customercompany) {
this.customercompany = customercompany;
}
public String getCustomer() {
return this.customer;
}
public void setCustomer(String customer) {
this.customer = customer;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCustomerId() {
return this.customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public Date getDate() {
return this.date;
}
public void setDate(Date date) {
this.date = date;
}
public String getQujingli() {
return this.qujingli;
}
public void setQujingli(String qujingli) {
this.qujingli = qujingli;
}
public String getDingId() {
return this.dingId;
}
public void setDingId(String dingId) {
this.dingId = dingId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -