using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 客户资料类 /// public class ClientData : ModelBase { int did; /// /// 客户所属部门(设置数据外键编号) /// public int Did { get { return did; } set { did = value; } } int sex; /// /// 客户性别 /// public int Sex { get { return sex; } set { sex = value; } } string unitName; /// /// 单位名称 /// public string UnitName { get { return unitName; } set { unitName = value; } } string unitAbbreviation; /// /// 单位缩写 /// public string UnitAbbreviation { get { return unitAbbreviation; } set { unitAbbreviation = value; } } string post; /// /// 客户职位 /// public string Post { get { return post; } set { post = value; } } string tel; /// /// 客户电话 /// public string Tel { get { return tel; } set { tel = value; } } string email; /// /// 客户电子邮箱 /// public string Email { get { return email; } set { email = value; } } string fax; /// /// 客户传真号码 /// public string Fax { get { return fax; } set { fax = value; } } string otherInformation; /// /// 客户其他信息 /// public string OtherInformation { get { return otherInformation; } set { otherInformation = value; } } int operators; /// /// 操作人 /// public int Operators { get { return operators; } set { operators = value; } } string operatorsDate; /// /// 操作时间 /// public string OperatorsDate { get { return operatorsDate; } set { operatorsDate = value; } } int isDel; /// /// 删除标识 /// public int IsDel { get { return isDel; } set { isDel = value; } } int lid; /// /// 等级编号 /// public int Lid { get { return lid; } set { lid = value; } } string clientLvl; /// /// 客户级别[无级别0,省级1,市级2] /// public string ClientLvl { get { return clientLvl; } set { clientLvl = value; } } } }