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

📄 crm_customer_infoitem.java

📁 java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理,角色管理,权限) 2.工作流管理 (流程类别,流程) 3.字典管理 (国家,省份,城市,公共数据字典) 4.项目
💻 JAVA
字号:
package com.vere.crm.customer.item;	import java.io.*;	import com.vere.dictionary.item.*;	public class Crm_customer_infoItem implements Serializable	{		private String id;//		private String customer_name;//客户名		private String charge_name;//联系人		private String telephone;//联系电话		private String fax;//传真		private String email;//邮箱		private String bank_account;//银行帐号		private String bank;//开户银行		private String bank_dictionaryname;//开户银行		private String home_url;//公司网址		private String address;//公司地址		private String zip;//邮编		private String customer_rake;//客户等级		private String customer_rake_dictionaryname;//客户等级		private String credit_rake;//信用等级		private String credit_rake_dictionaryname;//信用等级		private String customer_type;//客户类型		private String customer_type_dictionaryname;//客户类型		private String customer_origin;//客户来源		private String customer_origin_dictionaryname;//客户来源		private String customer_business;//客户行业		private String customer_business_dictionaryname;//客户行业		private String country_id;//国家		private  Dictionary_countryItem dictionary_countryItem;//国家		private String province_id;//省份/地区		private  Dictionary_provinceItem dictionary_provinceItem;//省份/地区		private String city_id;//城市		private  Dictionary_cityItem dictionary_cityItem;//城市		private String custome_introduction;//客户简介		private String register_date;//登记日期		private String register_username;//登记用户		private String register_name;//登记人		private String register_department_id;//登记部门编号		private String register_department_nodepath;//登记部门路径		private String register_department;//登记部门		private String register_area_id;//登记地区编号		private String register_area_nodepath;//登记地区路径		private String register_area;//登记地区		public Crm_customer_infoItem()		{		}		/**		 * @see			 */		public String getId()		{			if(this.id==null)				this.id="";			return this.id;		}		/**		 * @see			 */		public void setId(String id)		{			this.id=id;		}		/**		 * @see	客户名		 */		public String getCustomer_name()		{			if(this.customer_name==null)				this.customer_name="";			return this.customer_name;		}		/**		 * @see	客户名		 */		public void setCustomer_name(String customer_name)		{			this.customer_name=customer_name;		}		/**		 * @see	联系人		 */		public String getCharge_name()		{			if(this.charge_name==null)				this.charge_name="";			return this.charge_name;		}		/**		 * @see	联系人		 */		public void setCharge_name(String charge_name)		{			this.charge_name=charge_name;		}		/**		 * @see	联系电话		 */		public String getTelephone()		{			if(this.telephone==null)				this.telephone="";			return this.telephone;		}		/**		 * @see	联系电话		 */		public void setTelephone(String telephone)		{			this.telephone=telephone;		}		/**		 * @see	传真		 */		public String getFax()		{			if(this.fax==null)				this.fax="";			return this.fax;		}		/**		 * @see	传真		 */		public void setFax(String fax)		{			this.fax=fax;		}		/**		 * @see	邮箱		 */		public String getEmail()		{			if(this.email==null)				this.email="";			return this.email;		}		/**		 * @see	邮箱		 */		public void setEmail(String email)		{			this.email=email;		}		/**		 * @see	银行帐号		 */		public String getBank_account()		{			if(this.bank_account==null)				this.bank_account="";			return this.bank_account;		}		/**		 * @see	银行帐号		 */		public void setBank_account(String bank_account)		{			this.bank_account=bank_account;		}		/**		 * @see	开户银行		 */		public String getBank()		{			if(this.bank==null)				this.bank="";			return this.bank;		}		/**		 * @see	开户银行		 */		public void setBank(String bank)		{			this.bank=bank;		}		/**		 * @see	开户银行		 */		public String getBank_dictionaryname()		{			if(this.bank_dictionaryname==null)				this.bank_dictionaryname="";			return this.bank_dictionaryname;		}		/**		 * @see	开户银行		 */		public void setBank_dictionaryname(String bank_dictionaryname)		{			this.bank_dictionaryname=bank_dictionaryname;		}		/**		 * @see	公司网址		 */		public String getHome_url()		{			if(this.home_url==null)				this.home_url="";			return this.home_url;		}		/**		 * @see	公司网址		 */		public void setHome_url(String home_url)		{			this.home_url=home_url;		}		/**		 * @see	公司地址		 */		public String getAddress()		{			if(this.address==null)				this.address="";			return this.address;		}		/**		 * @see	公司地址		 */		public void setAddress(String address)		{			this.address=address;		}		/**		 * @see	邮编		 */		public String getZip()		{			if(this.zip==null)				this.zip="";			return this.zip;		}		/**		 * @see	邮编		 */		public void setZip(String zip)		{			this.zip=zip;		}		/**		 * @see	客户等级		 */		public String getCustomer_rake()		{			if(this.customer_rake==null)				this.customer_rake="";			return this.customer_rake;		}		/**		 * @see	客户等级		 */		public void setCustomer_rake(String customer_rake)		{			this.customer_rake=customer_rake;		}		/**		 * @see	客户等级		 */		public String getCustomer_rake_dictionaryname()		{			if(this.customer_rake_dictionaryname==null)				this.customer_rake_dictionaryname="";			return this.customer_rake_dictionaryname;		}		/**		 * @see	客户等级		 */		public void setCustomer_rake_dictionaryname(String customer_rake_dictionaryname)		{			this.customer_rake_dictionaryname=customer_rake_dictionaryname;		}		/**		 * @see	信用等级		 */		public String getCredit_rake()		{			if(this.credit_rake==null)				this.credit_rake="";			return this.credit_rake;		}		/**		 * @see	信用等级		 */		public void setCredit_rake(String credit_rake)		{			this.credit_rake=credit_rake;		}		/**		 * @see	信用等级		 */		public String getCredit_rake_dictionaryname()		{			if(this.credit_rake_dictionaryname==null)				this.credit_rake_dictionaryname="";			return this.credit_rake_dictionaryname;		}		/**		 * @see	信用等级		 */		public void setCredit_rake_dictionaryname(String credit_rake_dictionaryname)		{			this.credit_rake_dictionaryname=credit_rake_dictionaryname;		}		/**		 * @see	客户类型		 */		public String getCustomer_type()		{			if(this.customer_type==null)				this.customer_type="";			return this.customer_type;		}		/**		 * @see	客户类型		 */		public void setCustomer_type(String customer_type)		{			this.customer_type=customer_type;		}		/**		 * @see	客户类型		 */		public String getCustomer_type_dictionaryname()		{			if(this.customer_type_dictionaryname==null)				this.customer_type_dictionaryname="";			return this.customer_type_dictionaryname;		}		/**		 * @see	客户类型		 */		public void setCustomer_type_dictionaryname(String customer_type_dictionaryname)		{			this.customer_type_dictionaryname=customer_type_dictionaryname;		}		/**		 * @see	客户来源		 */		public String getCustomer_origin()		{			if(this.customer_origin==null)				this.customer_origin="";			return this.customer_origin;		}		/**		 * @see	客户来源		 */		public void setCustomer_origin(String customer_origin)		{			this.customer_origin=customer_origin;		}		/**		 * @see	客户来源		 */		public String getCustomer_origin_dictionaryname()		{			if(this.customer_origin_dictionaryname==null)				this.customer_origin_dictionaryname="";			return this.customer_origin_dictionaryname;		}		/**		 * @see	客户来源		 */		public void setCustomer_origin_dictionaryname(String customer_origin_dictionaryname)		{			this.customer_origin_dictionaryname=customer_origin_dictionaryname;		}		/**		 * @see	客户行业		 */		public String getCustomer_business()		{			if(this.customer_business==null)				this.customer_business="";			return this.customer_business;		}		/**		 * @see	客户行业		 */		public void setCustomer_business(String customer_business)		{			this.customer_business=customer_business;		}		/**		 * @see	客户行业		 */		public String getCustomer_business_dictionaryname()		{			if(this.customer_business_dictionaryname==null)				this.customer_business_dictionaryname="";			return this.customer_business_dictionaryname;		}		/**		 * @see	客户行业		 */		public void setCustomer_business_dictionaryname(String customer_business_dictionaryname)		{			this.customer_business_dictionaryname=customer_business_dictionaryname;		}		/**		 * @see	国家		 */		public String getCountry_id()		{			if(this.country_id==null)				this.country_id="";			return this.country_id;		}		/**		 * @see	国家		 */		public void setCountry_id(String country_id)		{			this.country_id=country_id;		}		/**		 * @see	国家		 */		public Dictionary_countryItem getDictionary_countryItem()		{			return this.dictionary_countryItem;		}		/**		 * @see	国家		 */		public void setDictionary_countryItem(Dictionary_countryItem dictionary_countryItem)		{			this.dictionary_countryItem=dictionary_countryItem;		}		/**		 * @see	省份/地区		 */		public String getProvince_id()		{			if(this.province_id==null)				this.province_id="";			return this.province_id;		}		/**		 * @see	省份/地区		 */		public void setProvince_id(String province_id)		{			this.province_id=province_id;		}		/**		 * @see	省份/地区		 */		public Dictionary_provinceItem getDictionary_provinceItem()		{			return this.dictionary_provinceItem;		}		/**		 * @see	省份/地区		 */		public void setDictionary_provinceItem(Dictionary_provinceItem dictionary_provinceItem)		{			this.dictionary_provinceItem=dictionary_provinceItem;		}		/**		 * @see	城市		 */		public String getCity_id()		{			if(this.city_id==null)				this.city_id="";			return this.city_id;		}		/**		 * @see	城市		 */		public void setCity_id(String city_id)		{			this.city_id=city_id;		}		/**		 * @see	城市		 */		public Dictionary_cityItem getDictionary_cityItem()		{			return this.dictionary_cityItem;		}		/**		 * @see	城市		 */		public void setDictionary_cityItem(Dictionary_cityItem dictionary_cityItem)		{			this.dictionary_cityItem=dictionary_cityItem;		}		/**		 * @see	客户简介		 */		public String getCustome_introduction()		{			if(this.custome_introduction==null)				this.custome_introduction="";			return this.custome_introduction;		}		/**		 * @see	客户简介		 */		public void setCustome_introduction(String custome_introduction)		{			this.custome_introduction=custome_introduction;		}		/**		 * @see	登记日期		 */		public String getRegister_date()		{			if(this.register_date==null)				this.register_date="";			return this.register_date;		}		/**		 * @see	登记日期		 */		public void setRegister_date(String register_date)		{			this.register_date=register_date;		}		/**		 * @see	登记用户		 */		public String getRegister_username()		{			if(this.register_username==null)				this.register_username="";			return this.register_username;		}		/**		 * @see	登记用户		 */		public void setRegister_username(String register_username)		{			this.register_username=register_username;		}		/**		 * @see	登记人		 */		public String getRegister_name()		{			if(this.register_name==null)				this.register_name="";			return this.register_name;		}		/**		 * @see	登记人		 */		public void setRegister_name(String register_name)		{			this.register_name=register_name;		}		/**		 * @see	登记部门编号		 */		public String getRegister_department_id()		{			if(this.register_department_id==null)				this.register_department_id="";			return this.register_department_id;		}		/**		 * @see	登记部门编号		 */		public void setRegister_department_id(String register_department_id)		{			this.register_department_id=register_department_id;		}		/**		 * @see	登记部门路径		 */		public String getRegister_department_nodepath()		{			if(this.register_department_nodepath==null)				this.register_department_nodepath="";			return this.register_department_nodepath;		}		/**		 * @see	登记部门路径		 */		public void setRegister_department_nodepath(String register_department_nodepath)		{			this.register_department_nodepath=register_department_nodepath;		}		/**		 * @see	登记部门		 */		public String getRegister_department()		{			if(this.register_department==null)				this.register_department="";			return this.register_department;		}		/**		 * @see	登记部门		 */		public void setRegister_department(String register_department)		{			this.register_department=register_department;		}		/**		 * @see	登记地区编号		 */		public String getRegister_area_id()		{			if(this.register_area_id==null)				this.register_area_id="";			return this.register_area_id;		}		/**		 * @see	登记地区编号		 */		public void setRegister_area_id(String register_area_id)		{			this.register_area_id=register_area_id;		}		/**		 * @see	登记地区路径		 */		public String getRegister_area_nodepath()		{			if(this.register_area_nodepath==null)				this.register_area_nodepath="";			return this.register_area_nodepath;		}		/**		 * @see	登记地区路径		 */		public void setRegister_area_nodepath(String register_area_nodepath)		{			this.register_area_nodepath=register_area_nodepath;		}		/**		 * @see	登记地区		 */		public String getRegister_area()		{			if(this.register_area==null)				this.register_area="";			return this.register_area;		}		/**		 * @see	登记地区		 */		public void setRegister_area(String register_area)		{			this.register_area=register_area;		}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -