/** 版本信息模板在安装目录下,可自行修改。 * T_Cus_ContactPerson.cs * * 功 能: N/A * 类 名: T_Cus_ContactPerson * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2015/3/5 11:17:53 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace ZXDT.CallCenter.Model { /// /// T_Cus_ContactPerson:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Cus_ContactPerson { public T_Cus_ContactPerson() {} #region Model private int _f_manid; private int? _f_customerid; private int? _f_categoryid; private string _f_name; private string _f_ename; private bool _f_ismain= false; private string _f_sex; private string _f_telephone; private string _f_mobile; private string _f_fax; private string _f_address; private string _f_email; private string _f_duty; private string _f_department; private string _f_qq; private string _f_msn; private bool _f_isbirth; private DateTime? _f_birthday; private int? _f_birthtype=0; private DateTime? _f_birthcn; private int? _f_birthcnyear; private int? _f_birthcnmonth; private int? _f_birthcnday; private bool _f_issms; private string _f_smscontent; private DateTime? _f_firstdate; private DateTime? _f_latelydate; private string _f_remark; private Guid _f_createby; private DateTime? _f_createon; private Guid _f_modifyby; private DateTime? _f_modifyon; private int? _f_deletionstatecode=0; private string _f_useraccount; private string _f_password; private int? _f_roleid; /// /// /// public int F_ManId { set{ _f_manid=value;} get{return _f_manid;} } /// /// /// public int? F_CustomerId { set{ _f_customerid=value;} get{return _f_customerid;} } /// /// /// public int? F_CategoryId { set{ _f_categoryid=value;} get{return _f_categoryid;} } /// /// /// public string F_Name { set{ _f_name=value;} get{return _f_name;} } /// /// /// public string F_EName { set{ _f_ename=value;} get{return _f_ename;} } /// /// /// public bool F_IsMain { set{ _f_ismain=value;} get{return _f_ismain;} } /// /// /// public string F_Sex { set{ _f_sex=value;} get{return _f_sex;} } /// /// /// 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 string F_Fax { set{ _f_fax=value;} get{return _f_fax;} } /// /// /// public string F_Address { set{ _f_address=value;} get{return _f_address;} } /// /// /// public string F_Email { set{ _f_email=value;} get{return _f_email;} } /// /// /// public string F_Duty { set{ _f_duty=value;} get{return _f_duty;} } /// /// /// public string F_Department { set{ _f_department=value;} get{return _f_department;} } /// /// /// public string F_QQ { set{ _f_qq=value;} get{return _f_qq;} } /// /// /// public string F_MSN { set{ _f_msn=value;} get{return _f_msn;} } /// /// /// public bool F_IsBirth { set{ _f_isbirth=value;} get{return _f_isbirth;} } /// /// /// public DateTime? F_Birthday { set{ _f_birthday=value;} get{return _f_birthday;} } /// /// 生日类型(0阳历、1农历) /// public int? F_BirthType { set{ _f_birthtype=value;} get{return _f_birthtype;} } /// /// 农历生日 /// public DateTime? F_BirthCN { set{ _f_birthcn=value;} get{return _f_birthcn;} } /// /// 农历年 /// public int? F_BirthCNYear { set{ _f_birthcnyear=value;} get{return _f_birthcnyear;} } /// /// 农历月 /// public int? F_BirthCNMonth { set{ _f_birthcnmonth=value;} get{return _f_birthcnmonth;} } /// /// 农历日 /// public int? F_BirthCNDay { set{ _f_birthcnday=value;} get{return _f_birthcnday;} } /// /// /// public bool F_IsSMS { set{ _f_issms=value;} get{return _f_issms;} } /// /// /// public string F_SMSContent { set{ _f_smscontent=value;} get{return _f_smscontent;} } /// /// /// public DateTime? F_FirstDate { set{ _f_firstdate=value;} get{return _f_firstdate;} } /// /// /// public DateTime? F_LatelyDate { set{ _f_latelydate=value;} get{return _f_latelydate;} } /// /// /// public string F_Remark { set{ _f_remark=value;} get{return _f_remark;} } /// /// /// public Guid F_CreateBy { set{ _f_createby=value;} get{return _f_createby;} } /// /// /// public DateTime? F_CreateOn { set{ _f_createon=value;} get{return _f_createon;} } /// /// /// public Guid F_ModifyBy { set{ _f_modifyby=value;} get{return _f_modifyby;} } /// /// /// public DateTime? F_ModifyOn { set{ _f_modifyon=value;} get{return _f_modifyon;} } /// /// /// public int? F_DeletionStateCode { set{ _f_deletionstatecode=value;} get{return _f_deletionstatecode;} } /// /// F_UserAccount /// public string F_UserAccount { get { return _f_useraccount; } set { _f_useraccount = value; } } /// /// F_Password /// public string F_Password { get { return _f_password; } set { _f_password = value; } } /// /// F_RoleId /// public int? F_RoleId { get { return _f_roleid; } set { _f_roleid = value; } } #endregion Model } }