using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { public class opitineraryfixed { private int tid; /// /// 出国物品准备 /// private string itemPrepare; /// /// 特别提醒 /// private string specialReminder; /// /// 出入境注意事项 /// private string cGPrecautions; /// /// 因公出国 /// private string yGCG; /// /// 人员守则 /// private string conduct; /// /// 旅行常用英语 /// private string commonEnglish; public int Tid { get => tid; set => tid = value; } public string ItemPrepare { get => itemPrepare; set => itemPrepare = value; } public string SpecialReminder { get => specialReminder; set => specialReminder = value; } public string CGPrecautions { get => cGPrecautions; set => cGPrecautions = value; } public string YGCG { get => yGCG; set => yGCG = value; } public string Conduct { get => conduct; set => conduct = value; } public string CommonEnglish { get => commonEnglish; set => commonEnglish = value; } } public class opitinerarydata { private int tid; /// /// 名称 /// private string name; /// /// 简介 /// private string introduction; /// /// 时差 /// private string timeDifference; /// /// 汇率 /// private float currExchangeRate; /// /// 气温 /// private string temperature; public int Tid { get => tid; set => tid = value; } public string Name { get => name; set => name = value; } public string Introduction { get => introduction; set => introduction = value; } public string TimeDifference { get => timeDifference; set => timeDifference = value; } public float CurrExchangeRate { get => currExchangeRate; set => currExchangeRate = value; } public string Temperature { get => temperature; set => temperature = value; } } }