📄 customeractionform.java
字号:
package com.tarena.crm.customer.web.struts.form;
import org.apache.struts.action.*;
import javax.servlet.http.*;
public class CustomerActionForm
extends ActionForm {
/**
* 客户编号
*/
private String customerNo;
/**
* 客户名称
*/
private String customerName;
/**
* 客户类型
*/
private String customerType;
/**
* 客户状态
*/
private String customerStatus;
/**
* 客户描述
*/
private String remark;
/**
* 客户性别
*/
private String customerSex;
/**
* 证件类型
*/
private String certificateType;
/**
* 证件号码
*/
private String certificateNo;
/**
* 客户职业
*/
private String customerBusiness;
/**
* 公司地址
*/
private String companyAddress;
/**
* 家庭地址
*/
private String homeAddress;
/**
* 电话号码
*/
private String customerPhone;
/**
* e-mail
*/
private String eMail;
// set,get方法自己实现
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -