customeractionform.java
来自「达内CRM培训项目java源码:主要系统功能 1 用户登录 2 客户管理」· Java 代码 · 共 76 行
JAVA
76 行
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 + =
减小字号Ctrl + -
显示快捷键?