using System; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.CommMng.Models { [JsonObject] public class InfoClientContactModel { #region private string _gid = ""; /// /// 惟一编号 /// public string GID { get { return _gid; } set { _gid = value; } } private string _linkid = ""; /// /// 客户关联id /// public string LINKID { get { return _linkid; } set { _linkid = value; } } private string _codename = ""; /// /// 客户代码 /// public string CODENAME { get { return _codename; } set { _codename = value; } } private string _showname = ""; /// /// 客户名称 /// public string SHOWNAME { get { return _showname; } set { _showname = value; } } private string _addr = ""; /// /// 通讯地址 /// public string ADDR { get { return _addr; } set { _addr = value; } } private string _email = ""; /// /// 电子邮箱 /// public string EMAIL { get { return _email; } set { _email = value; } } public string NAMEANDEMAIL { get { return _showname+" "+_email; } } private string _tel = ""; /// /// 电话 /// public string TEL { get { return _tel; } set { _tel = value; } } private string _fax = ""; /// /// 传真 /// public string FAX { get { return _fax; } set { _fax = value; } } private string _mobile = ""; /// /// 传真 /// public string MOBILE { get { return _mobile; } set { _mobile = value; } } private bool _isfinancialstaff = false; /// /// 是否为财务 /// public bool ISFINANCIALSTAFF { get { return _isfinancialstaff; } set { _isfinancialstaff = value; } } private bool _isoperator = false; /// /// 是否为操作 /// public bool ISOPERATOR { get { return _isoperator; } set { _isoperator = value; } } private bool _issaleman = false; /// /// 是否为销售 /// public bool ISSALEMAN { get { return _issaleman; } set { _issaleman = value; } } private bool _isother = false; /// /// 是否为其他 /// public bool ISOTHER { get { return _isother; } set { _isother = value; } } private bool _contacttype1 = false; /// /// 联系人类别1 /// public bool CONTACTTYPE1 { get { return _contacttype1; } set { _contacttype1 = value; } } private bool _contacttype2 = false; /// /// 联系人类别2 /// public bool CONTACTTYPE2 { get { return _contacttype2; } set { _contacttype2 = value; } } private bool _contacttype3 = false; /// /// 联系人类别3 /// public bool CONTACTTYPE3 { get { return _contacttype3; } set { _contacttype3 = value; } } private bool _contacttype4 = false; /// /// 联系人类别4 /// public bool CONTACTTYPE4 { get { return _contacttype4; } set { _contacttype4 = value; } } private bool _contacttype5 = false; /// /// 联系人类别5 /// public bool CONTACTTYPE5 { get { return _contacttype5; } set { _contacttype5 = value; } } private bool _contacttype6 = false; /// /// 联系人类别6 /// public bool CONTACTTYPE6 { get { return _contacttype6; } set { _contacttype6 = value; } } private bool _contacttype7 = false; /// /// 联系人类别7 /// public bool CONTACTTYPE7 { get { return _contacttype7; } set { _contacttype7 = value; } } private string _createuser = ""; /// /// 创建人GID /// public string CREATEUSER { get { return _createuser; } set { _createuser = value; } } private DateTime _createtime = DateTime.Now; /// /// 创建时间 /// public DateTime CREATETIME { get { return _createtime; } set { _createtime = value; } } private string _modifieduser = ""; /// /// 最后一次更新操作人GID /// public string MODIFIEDUSER { get { return _modifieduser; } set { _modifieduser = value; } } private DateTime _modifiedtime = DateTime.Now; /// /// 最后一次更新操作时间 /// public DateTime MODIFIEDTIME { get { return _modifiedtime; } set { _modifiedtime = value; } } private bool _isstop = false; /// /// 是否停用该联系人信息 /// public bool ISSTOP { get { return _isstop; } set { _isstop = value; } } private bool _isdeleted = false; /// /// 联系人删除状态标志 /// public bool ISDELETED { get { return _isdeleted; } set { _isdeleted = value; } } private string _remark = ""; /// /// 备注 /// public string REMARK { get { return _remark; } set { _remark = value; } } private DateTime _anniversary2; /// /// ANNIVERSARY2 /// public DateTime ANNIVERSARY2 { get { return _anniversary2; } set { _anniversary2 = value; } } private string _aremark2 = ""; /// /// AREMARK2 /// public string AREMARK2 { get { return _aremark2; } set { _aremark2 = value; } } private DateTime _birthday; /// /// BIRTHDAY /// public DateTime BIRTHDAY { get { return _birthday; } set { _birthday = value; } } private DateTime _anniversary1; /// /// ANNIVERSARY1 /// public DateTime ANNIVERSARY1 { get { return _anniversary1; } set { _anniversary1 = value; } } private string _aremark1 = ""; /// /// AREMARK1 /// public string AREMARK1 { get { return _aremark1; } set { _aremark1 = value; } } private bool _isbirthday = false; /// /// ISBIRTHDAY /// public bool ISBIRTHDAY { get { return _isbirthday; } set { _isbirthday = value; } } private bool _isanniversary1 = false; /// /// ISANNIVERSARY1 /// public bool ISANNIVERSARY1 { get { return _isanniversary1; } set { _isanniversary1 = value; } } private bool _isanniversary2 = false; /// /// ISANNIVERSARY2 /// public bool ISANNIVERSARY2 { get { return _isanniversary2; } set { _isanniversary2 = value; } } private int _birthdayday = 0; /// /// BIRTHDAYDAY /// public int BIRTHDAYDAY { get { return _birthdayday; } set { _birthdayday = value; } } private int _anniversaryday1 = 0; /// /// ANNIVERSARYDAY1 /// public int ANNIVERSARYDAY1 { get { return _anniversaryday1; } set { _anniversaryday1 = value; } } private int _anniversaryday2 = 0; /// /// ANNIVERSARYDAY2 /// public int ANNIVERSARYDAY2 { get { return _anniversaryday2; } set { _anniversaryday2 = value; } } private string _job = ""; /// /// JOB /// public string JOB { get { return _job; } set { _job = value; } } private string _sex = ""; /// /// SEX /// public string SEX { get { return _sex; } set { _sex = value; } } private string _age = ""; /// /// AGE /// public string AGE { get { return _age; } set { _age = value; } } private string _marry = ""; /// /// MARRY /// public string MARRY { get { return _marry; } set { _marry = value; } } private string _children = ""; /// /// CHILDREN /// public string CHILDREN { get { return _children; } set { _children = value; } } private string _hobbies = ""; /// /// HOBBIES /// public string HOBBIES { get { return _hobbies; } set { _hobbies = value; } } #endregion } }