using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 邀请/公务活动资料类 /// public class InvitationOfficialActivityData { int id; /// /// 主键编号 /// public int Id { get { return id; } set { id = value; } } string country; /// /// 邀请方国家 /// public string Country { get { return country; } set { country = value; } } /// /// 团组Id /// public int Diid { get; set; } string city; /// /// 城市 /// public string City { get { return city; } set { city = value; } } string unitName; /// /// 邀请方名称 /// public string UnitName { get { return unitName; } set { unitName = value; } } string unitWeb; /// ///邀请方官网 /// public string UnitWeb { get { return unitWeb; } set { unitWeb = value; } } string field; /// /// 涉及领域 /// public string Field { get { return field; } set { field = value; } } string address; /// /// 邀请方地址 /// public string Address { get { return address; } set { address = value; } } string unitInfo; /// /// 邀请方信息 /// public string UnitInfo { get { return unitInfo; } set { unitInfo = value; } } string contact; /// /// 联系人 /// public string Contact { get { return contact; } set { contact = value; } } string job; /// /// 职务 /// public string Job { get { return job; } set { job = value; } } string tel; /// /// 联系电话 /// public string Tel { get { return tel; } set { tel = value; } } string email; /// /// 电子邮箱 /// public string Email { get { return email; } set { email = value; } } string weChat; /// /// 微信 /// public string WeChat { get { return weChat; } set { weChat = value; } } string faceBook; /// /// fb /// public string FaceBook { get { return faceBook; } set { faceBook = value; } } string ins; /// /// ins /// public string Ins { get { return ins; } set { ins = value; } } string delegation; /// /// 团名 /// public string Delegation { get { return delegation; } set { delegation = value; } } string fileName; /// /// 文件名 /// public string FileName { get { return fileName; } set { fileName = value; } } string filePath; /// /// 文件地址 /// public string FilePath { get { return filePath; } set { filePath = value; } } string sndFileName; /// /// 修改版文件 /// public string SndFileName { get { return sndFileName; } set { sndFileName = value; } } string sndFilePath; /// /// 修改版文件地址 /// public string SndFilePath { get { return sndFilePath; } set { sndFilePath = value; } } /// /// 其他信息 /// public string OtherInformation { get { return otherInformation; } set { otherInformation = value; } } string fax; /// /// 传真号码 /// public string Fax { get { return fax; } set { fax = value; } } string otherInformation; 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; } } /// /// 背景 /// public string Backdrop { get; set; } } }