using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class MediaSuppliers : ModelBase { int did; /// /// 供应商类型(设置数据外键编号) /// public int Did { get { return did; } set { did = value; } } /// /// 省份 /// public string Privince { get; set; } /// /// 城市 /// /// public string City { get; set; } 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; } } public string QQ { get; set; } string email; /// /// 客户电子邮箱 /// public string Email { get { return email; } set { email = value; } } string fax; /// /// 客户传真号码 /// public string Fax { get { return fax; } set { fax = value; } } public string Address { get; set; } 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; } } } }