1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Models
- {
- public class opitineraryfixed
- {
- private int tid;
- /// <summary>
- /// 出国物品准备
- /// </summary>
- private string itemPrepare;
- /// <summary>
- /// 特别提醒
- /// </summary>
- private string specialReminder;
- /// <summary>
- /// 出入境注意事项
- /// </summary>
- private string cGPrecautions;
- /// <summary>
- /// 因公出国
- /// </summary>
- private string yGCG;
- /// <summary>
- /// 人员守则
- /// </summary>
- private string conduct;
- /// <summary>
- /// 旅行常用英语
- /// </summary>
- 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;
- /// <summary>
- /// 名称
- /// </summary>
- private string name;
- /// <summary>
- /// 简介
- /// </summary>
- private string introduction;
- /// <summary>
- /// 时差
- /// </summary>
- private string timeDifference;
- /// <summary>
- /// 汇率
- /// </summary>
- private float currExchangeRate;
- /// <summary>
- /// 气温
- /// </summary>
- 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; }
- }
- }
|