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