customerform.java
来自「基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰」· Java 代码 · 共 218 行
JAVA
218 行
package com.yuanchung.sales.struts.customer.form;
import org.apache.struts.action.ActionForm;
public class CustomerForm extends ActionForm{
/**
*
*/
private static final long serialVersionUID = 4867420607132469964L;
private String id;
private int userId;
private String customerName;
private String createTime;
private String legalRepresent;
private String bizType;
private String registerCapital;
private String industryOf;
private String industryType;
private String s1;
private String s2;
private String s3;
private String employeeNum;
private String regionOf;
private String communAddr;
private String phone;
private String fax;
private String zipCode;
private String webSite;
private String email;
private String honestGrade;
private String managerLevel;
private String breedVisualize;
private String customerState;
private String customerSource;
private String remark;
private String customerId;
private String delRights;
private String modifyRights;
//---客户选项----//
public String getDelRights() {
return delRights;
}
public void setDelRights(String delRights) {
this.delRights = delRights;
}
public String getModifyRights() {
return modifyRights;
}
public void setModifyRights(String modifyRights) {
this.modifyRights = modifyRights;
}
public String getCustomerId() {
return customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getS1() {
return s1;
}
public void setS1(String s1) {
this.s1 = s1;
}
public String getS2() {
return s2;
}
public void setS2(String s2) {
this.s2 = s2;
}
public String getS3() {
return s3;
}
public void setS3(String s3) {
this.s3 = s3;
}
public String getEmployeeNum() {
return employeeNum;
}
public void setEmployeeNum(String employeeNum) {
this.employeeNum = employeeNum;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getLegalRepresent() {
return legalRepresent;
}
public void setLegalRepresent(String legalRepresent) {
this.legalRepresent = legalRepresent;
}
public String getBizType() {
return bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getRegisterCapital() {
return registerCapital;
}
public void setRegisterCapital(String registerCapital) {
this.registerCapital = registerCapital;
}
public String getIndustryOf() {
return industryOf;
}
public void setIndustryOf(String industryOf) {
this.industryOf = industryOf;
}
public String getCommunAddr() {
return communAddr;
}
public void setCommunAddr(String communAddr) {
this.communAddr = communAddr;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getFax() {
return fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getZipCode() {
return zipCode;
}
public void setZipCode(String zipCode) {
this.zipCode = zipCode;
}
public String getWebSite() {
return webSite;
}
public void setWebSite(String webSite) {
this.webSite = webSite;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getHonestGrade() {
return honestGrade;
}
public void setHonestGrade(String honestGrade) {
this.honestGrade = honestGrade;
}
public String getManagerLevel() {
return managerLevel;
}
public void setManagerLevel(String managerLevel) {
this.managerLevel = managerLevel;
}
public String getBreedVisualize() {
return breedVisualize;
}
public void setBreedVisualize(String breedVisualize) {
this.breedVisualize = breedVisualize;
}
public String getCustomerState() {
return customerState;
}
public void setCustomerState(String customerState) {
this.customerState = customerState;
}
public String getCustomerSource() {
return customerSource;
}
public void setCustomerSource(String customerSource) {
this.customerSource = customerSource;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getRegionOf() {
return regionOf;
}
public void setRegionOf(String regionOf) {
this.regionOf = regionOf;
}
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public String getIndustryType() {
return industryType;
}
public void setIndustryType(String industryType) {
this.industryType = industryType;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?