⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clientanalysisform.java

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -