clientanalysisform.java
来自「客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户」· Java 代码 · 共 59 行
JAVA
59 行
package com.qrsx.qrsxcrm.form;
import org.apache.struts.action.ActionForm;
import com.qrsx.qrsxcrm.model.ClientType;
import com.qrsx.qrsxcrm.model.Employee;
/**
* 客户统计分析form
* @author Administrator
*
*/
public class ClientAnalysisForm extends ActionForm {
private String radiosb; //统计方式
private String shape; //统计图形
/**
* @return the radiosb
*/
public String getRadiosb() {
return radiosb;
}
/**
* @param radiosb the radiosb to set
*/
public void setRadiosb(String radiosb) {
this.radiosb = radiosb;
}
/**
* @return the shape
*/
public String getShape() {
return shape;
}
/**
* @param shape the shape to set
*/
public void setShape(String shape) {
this.shape = shape;
}
// private String id; // 主键
// private String clientName; // 客户名称
// private String clientCode; // 客户编号
// private String telephone; // 客户电话
// private String address; // 客户住址
// private String postCard; // 客户邮编
// private String createDate; // 客户创建日期
// private String clientTypeId; // 客户类型id
// private String origin; // 客户来源
// private String fax; //客户传真
// private String employeeId; // 客户负责人id
// private String email; //电子邮件
// private String remark; //备注
// private ClientType clientType; //级联一个客户类型
// private Employee employee; //级联一个客户对象
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?