📄 cpeditform.java
字号:
package com.longtime.wap.module.cp.web.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.validator.ValidatorForm;
/**
* 修改单位表单
*
* @author liuzb
* @date Nov 20, 2007
*/
public class CpEditForm extends ValidatorForm {
private static final long serialVersionUID = 1L;
private String detailType;
private String editFlug;
private String currentPage;
private String cpId;
private String companyCode;
private String companyName;
private String address;
private String phone;
private String serviceDesc;
private String regDate;
private String email;
private String clientPhone;
/**
* 重写回复函数
*
* @param mapping
* ActionMapping对象
* @param request
* HttpServletRequest对象
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
detailType = null;
editFlug = null;
currentPage = null;
cpId = null;
companyCode = null;
companyName = null;
address = null;
phone = null;
serviceDesc = null;
regDate = null;
email = null;
clientPhone = null;
}
/**
* @return 返回 address。
*/
public String getAddress() {
return address;
}
/**
* @param address
* 要设置的 address。
*/
public void setAddress(String address) {
this.address = address;
}
/**
* @return 返回 companyCode。
*/
public String getCompanyCode() {
return companyCode;
}
/**
* @param companyCode
* 要设置的 companyCode。
*/
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
/**
* @return 返回 companyName。
*/
public String getCompanyName() {
return companyName;
}
/**
* @param companyName
* 要设置的 companyName。
*/
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
/**
* @return 返回 cpId。
*/
public String getCpId() {
return cpId;
}
/**
* @param cpId
* 要设置的 cpId。
*/
public void setCpId(String cpId) {
this.cpId = cpId;
}
/**
* @return 返回 currentPage。
*/
public String getCurrentPage() {
return currentPage;
}
/**
* @param currentPage
* 要设置的 currentPage。
*/
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
}
/**
* @return 返回 detailType。
*/
public String getDetailType() {
return detailType;
}
/**
* @param detailType
* 要设置的 detailType。
*/
public void setDetailType(String detailType) {
this.detailType = detailType;
}
/**
* @return 返回 editFlug。
*/
public String getEditFlug() {
return editFlug;
}
/**
* @param editFlug
* 要设置的 editFlug。
*/
public void setEditFlug(String editFlug) {
this.editFlug = editFlug;
}
/**
* @return 返回 email。
*/
public String getEmail() {
return email;
}
/**
* @param email
* 要设置的 email。
*/
public void setEmail(String email) {
this.email = email;
}
/**
* @return 返回 phone。
*/
public String getPhone() {
return phone;
}
/**
* @param phone
* 要设置的 phone。
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* @return 返回 regDate。
*/
public String getRegDate() {
return regDate;
}
/**
* @param regDate
* 要设置的 regDate。
*/
public void setRegDate(String regDate) {
this.regDate = regDate;
}
/**
* @return 返回 serviceDesc。
*/
public String getServiceDesc() {
return serviceDesc;
}
/**
* @param serviceDesc
* 要设置的 serviceDesc。
*/
public void setServiceDesc(String serviceDesc) {
this.serviceDesc = serviceDesc;
}
/**
* @return 返回 clientPhone。
*/
public String getClientPhone() {
return clientPhone;
}
/**
* @param clientPhone
* 要设置的 clientPhone。
*/
public void setClientPhone(String clientPhone) {
this.clientPhone = clientPhone;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -