/** 版本信息模板在安装目录下,可自行修改。 * T_Cus_CustomerBase.cs * * 功 能: N/A * 类 名: T_Cus_CustomerBase * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2015/2/27 16:05:58 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace YTSoft.BaseCallCenter.Model { /// /// T_Cus_CustomerBase:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Cus_CustomerBase { #region Model private int _f_customerid; private string _f_customername; private string _f_customercode; private string _f_customerename; private string _f_customerpym; private int? _f_layer; private string _f_customerlayer; private int? _f_categoryid=0; private int? _f_tradeid=0; private int? _f_regionid; private int? _f_industryid=0; private string _f_address; private string _f_url; private string _f_telephone; private string _f_mobile; private string _f_fax; private string _f_email; private string _f_website; private string _f_postcode; private string _f_scaleresume; private string _f_businessprofile; private string _f_businesslicenseid; private string _f_taxid; private string _f_openingbank; private string _f_bankaccount; private string _f_legalrepresentative; private string _f_legalrepresentativecardid; private string _f_nature; private string _f_kind; private int? _f_customertype; private string _f_mainproduct; private string _f_customerfrom; private string _f_trackinfo; private string _f_trackstate; private string _f_importdegree; private string _f_intentproduct; private int? _f_createby=0; private DateTime? _f_createdon; private int? _f_modifyby=0; private DateTime? _f_modifiedon; private int? _f_deleteflag=0; private int? _f_statuscode=0; private string _f_servicedept; private string _f_chargename; private string _f_chargetelephone; private string _f_province; private string _f_productline; private string _f_chargedept; private string _f_aftersalename; private string _f_customernature; private string _f_customerclass; private string _f_customerindustry; private string _f_relationshipclass; private string _f_currentversion; private DateTime? _f_systemstarttime; private DateTime? _f_qualityguaranteeendtime; private string _f_aftersaletelephone; private string _f_notes; private string _f_systemtype; private string _f_city; private string _f_customerstatus; private int? _f_devicecount; private string _f_maintenancetype; private string _f_erpcustomercode; private int? _f_servicedeptid; private int? _f_productlineid; private int? _f_aftersalenameid; private int? _f_customernatureid; private int? _f_customerclassid; private int? _f_relationshipclassid; private int? _f_cityid; #endregion Model #region 现用字段 /// /// 客户id /// public int F_CustomerId { set { _f_customerid = value; } get { return _f_customerid; } } /// /// 姓名 /// public string F_CustomerName { set { _f_customername = value; } get { return _f_customername; } } /// /// 性别 /// public string F_CustomerPym { set { _f_customerpym = value; } get { return _f_customerpym; } } /// /// 微信号 /// public string F_CustomerEName { set { _f_customerename = value; } get { return _f_customerename; } } /// /// 微博号 /// public string F_PostCode { set { _f_postcode = value; } get { return _f_postcode; } } /// /// 归属地 /// public string F_CustomerLayer { set { _f_customerlayer = value; } get { return _f_customerlayer; } } /// /// 年龄段 /// public string F_CustomerCode { set { _f_customercode = value; } get { return _f_customercode; } } /// /// 来电电话 /// public string F_Telephone { set { _f_telephone = value; } get { return _f_telephone; } } /// /// 回复电话 /// public string F_Mobile { set { _f_mobile = value; } get { return _f_mobile; } } /// /// 常进站 /// public int? F_DeviceCount { set { _f_devicecount = value; } get { return _f_devicecount; } } /// /// /// //常进站 public string F_Fax { set { _f_fax = value; } get { return _f_fax; } } /// /// 常出站 /// public int? F_AfterSaleNameID { set { _f_aftersalenameid = value; } get { return _f_aftersalenameid; } } /// /// /// //常出站 public string F_Email { set { _f_email = value; } get { return _f_email; } } /// /// 事发站点 /// public int? F_ProductLineID { set { _f_productlineid = value; } get { return _f_productlineid; } } /// /// 事发站点 /// public string F_Website { set { _f_website = value; } get { return _f_website; } } /// /// 客户属性编码1、语音 2、微信 ,3,微博 客户来源 /// public string F_Kind { set { _f_kind = value; } get { return _f_kind; } } /// /// 最近联络方式 客户属性1、语音 2、留言 ,3,微信、,4、微博、 /// public string F_CustomerNature { set { _f_customernature = value; } get { return _f_customernature; } } /// /// 客户等级编码1 、2、 3、 /// public string F_ScaleResume { set { _f_scaleresume = value; } get { return _f_scaleresume; } } /// /// 客户等级1、一般客户 2、特别关注 3、黑名单 /// public string F_CustomerClass { set { _f_customerclass = value; } get { return _f_customerclass; } } /// /// 创建人 /// public int? F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } /// /// 创建日期 /// public DateTime? F_CreatedOn { set { _f_createdon = value; } get { return _f_createdon; } } /// /// 用户id /// public int? F_ModifyBy { set { _f_modifyby = value; } get { return _f_modifyby; } } /// /// 修改日期 /// public DateTime? F_ModifiedOn { set { _f_modifiedon = value; } get { return _f_modifiedon; } } /// /// 业务类型id /// public int? F_IndustryId { set { _f_industryid = value; } get { return _f_industryid; } } /// /// 业务类型名称 /// public string F_Url { set { _f_url = value; } get { return _f_url; } } #endregion #region 不用字段 /// /// /// public int? F_TradeId { set { _f_tradeid = value; } get { return _f_tradeid; } } /// /// /// // /// /// /// public int? F_Layer { set{ _f_layer=value;} get{return _f_layer;} } /// /// /// public int? F_CategoryId { set{ _f_categoryid=value;} get{return _f_categoryid;} } /// /// /// public int? F_RegionId { set{ _f_regionid=value;} get{return _f_regionid;} } /// /// /// public string F_Address { set{ _f_address=value;} get{return _f_address;} } /// /// /// public string F_BusinessProfile { set{ _f_businessprofile=value;} get{return _f_businessprofile;} } /// /// /// public string F_BusinessLicenseID { set{ _f_businesslicenseid=value;} get{return _f_businesslicenseid;} } /// /// /// public string F_TaxID { set{ _f_taxid=value;} get{return _f_taxid;} } /// /// /// public string F_OpeningBank { set{ _f_openingbank=value;} get{return _f_openingbank;} } /// /// /// public string F_BankAccount { set{ _f_bankaccount=value;} get{return _f_bankaccount;} } /// /// /// public string F_LegalRepresentative { set{ _f_legalrepresentative=value;} get{return _f_legalrepresentative;} } /// /// /// public string F_LegalRepresentativeCardID { set{ _f_legalrepresentativecardid=value;} get{return _f_legalrepresentativecardid;} } /// /// /// public string F_Nature { set{ _f_nature=value;} get{return _f_nature;} } /// /// /// public int? F_CustomerType { set{ _f_customertype=value;} get{return _f_customertype;} } /// /// /// public string F_MainProduct { set{ _f_mainproduct=value;} get{return _f_mainproduct;} } /// /// /// public string F_CustomerFrom { set{ _f_customerfrom=value;} get{return _f_customerfrom;} } /// /// /// public string F_TrackInfo { set{ _f_trackinfo=value;} get{return _f_trackinfo;} } /// /// /// public string F_TrackState { set{ _f_trackstate=value;} get{return _f_trackstate;} } /// /// /// public string F_ImportDegree { set{ _f_importdegree=value;} get{return _f_importdegree;} } /// /// /// public string F_IntentProduct { set{ _f_intentproduct=value;} get{return _f_intentproduct;} } /// /// /// public int? F_DeleteFlag { set{ _f_deleteflag=value;} get{return _f_deleteflag;} } /// /// /// public int? F_StatusCode { set{ _f_statuscode=value;} get{return _f_statuscode;} } /// /// /// public string F_ServiceDept { set{ _f_servicedept=value;} get{return _f_servicedept;} } /// /// /// public string F_ChargeName { set{ _f_chargename=value;} get{return _f_chargename;} } /// /// /// public string F_ChargeTelephone { set{ _f_chargetelephone=value;} get{return _f_chargetelephone;} } /// /// /// public string F_Province { set{ _f_province=value;} get{return _f_province;} } /// /// /// public string F_ProductLine { set{ _f_productline=value;} get{return _f_productline;} } /// /// 负责部门 /// public string F_ChargeDept { set{ _f_chargedept=value;} get{return _f_chargedept;} } /// /// /// public string F_AfterSaleName { set{ _f_aftersalename=value;} get{return _f_aftersalename;} } /// /// /// public string F_CustomerIndustry { set{ _f_customerindustry=value;} get{return _f_customerindustry;} } /// /// /// public string F_RelationShipClass { set{ _f_relationshipclass=value;} get{return _f_relationshipclass;} } /// /// /// public string F_CurrentVersion { set{ _f_currentversion=value;} get{return _f_currentversion;} } /// /// /// public DateTime? F_SystemStartTime { set{ _f_systemstarttime=value;} get{return _f_systemstarttime;} } /// /// /// public DateTime? F_QualityGuaranteeEndTime { set{ _f_qualityguaranteeendtime=value;} get{return _f_qualityguaranteeendtime;} } /// /// /// public string F_AfterSaleTelephone { set{ _f_aftersaletelephone=value;} get{return _f_aftersaletelephone;} } /// /// /// public string F_Notes { set{ _f_notes=value;} get{return _f_notes;} } /// /// /// public string F_SystemType { set{ _f_systemtype=value;} get{return _f_systemtype;} } /// /// /// public string F_City { set{ _f_city=value;} get{return _f_city;} } /// /// /// public string F_CustomerStatus { set{ _f_customerstatus=value;} get{return _f_customerstatus;} } /// /// /// public string F_MaintenanceType { set{ _f_maintenancetype=value;} get{return _f_maintenancetype;} } /// /// /// public string F_ERPCustomerCode { set{ _f_erpcustomercode=value;} get{return _f_erpcustomercode;} } /// /// /// public int? F_ServiceDeptID { set{ _f_servicedeptid=value;} get{return _f_servicedeptid;} } /// /// /// public int? F_CustomerNatureID { set{ _f_customernatureid=value;} get{return _f_customernatureid;} } /// /// /// public int? F_CustomerClassID { set{ _f_customerclassid=value;} get{return _f_customerclassid;} } /// /// /// public int? F_RelationShipClassID { set{ _f_relationshipclassid=value;} get{return _f_relationshipclassid;} } /// /// /// public int? F_CityID { set{ _f_cityid=value;} get{return _f_cityid;} } #endregion } }