using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class Ticket { int id; public int Id { get { return id; } set { id = value; } } string country; public string Country { get { return country; } set { country = value; } } string area; /// /// 地区 /// public string Area { get { return area; } set { area = value; } } string scenicSpot; /// /// 风景区 /// public string ScenicSpot { get { return scenicSpot; } set { scenicSpot = value; } } string address; public string Address { get { return address; } set { address = value; } } string contact; public string Contact { get { return contact; } set { contact = value; } } float price; /// /// 参考价格 /// public float Price { get { return price; } set { price = value; } } int currency; /// /// 币种 /// public int Currency { get { return currency; } set { currency = value; } } int star; /// /// 星级 /// public int Star { get { return star; } set { star = value; } } string startDate; /// /// 消费日期 /// public string StartDate { get { return startDate; } set { startDate = value; } } string remark; public string Remark { get { return remark; } set { remark = value; } } int isDel; public int IsDel { get { return isDel; } set { isDel = value; } } } }