using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class OfficialActivities { int id; public int Id { get { return id; } set { id = value; } } int diid; /// /// 团组ID /// public int Diid { get { return diid; } set { diid = value; } } int dovid; /// /// DeleOverView数据ID /// public int Dovid { get { return dovid; } set { dovid = value; } } int type; /// /// 0带公务 1不带公务 2纯公务 /// 邀请方 1 公务方 0 /// public int Type { get { return type; } set { type = value; } } string client; /// /// 公务单位 /// public string Client { get { return client; } set { client = value; } } string date; /// /// 公务日期 /// public string Date { get { return date; } set { date = value; } } string time; /// /// 精确时间 /// public string Time { get { return time; } set { time = value; } } string address; /// /// 地址 /// public string Address { get { return address; } set { address = 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 form; /// /// 公务形式 /// public string Form { get { return form; } set { form = value; } } string setting; /// /// 公务方背景 /// public string Setting { get { return setting; } set { setting = value; } } string dresscode; /// /// 着装要求 /// public string Dresscode { get { return dresscode; } set { dresscode = value; } } string attendees; /// /// 参会人员 /// public string Attendees { get { return attendees; } set { attendees = value; } } string isNeedTrans; /// /// 是否需要翻译 /// public string IsNeedTrans { get { return isNeedTrans; } set { isNeedTrans = value; } } string translators; /// /// 翻译人员 /// public string Translators { get { return translators; } set { translators = value; } } string language; /// /// 翻译语种 /// public string Language { get { return language; } set { language = value; } } string trip; /// /// 暂定行程 /// public string Trip { get { return trip; } set { trip = value; } } int oper; /// /// 操作人员 /// public int Oper { get { return oper; } set { oper = value; } } string opDate; /// /// 日期 /// public string OpDate { get { return opDate; } set { opDate = value; } } int isdel; /// /// 删除标识 /// public int Isdel { get { return isdel; } set { isdel = value; } } /// /// 是否报批 /// public int IsSubmitApproval { get; set; } /// /// 是否付费 /// public int IsPay { get; set; } } }