123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- 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;
- /// <summary>
- /// 地区
- /// </summary>
- public string Area
- {
- get { return area; }
- set { area = value; }
- }
- string scenicSpot;
- /// <summary>
- /// 风景区
- /// </summary>
- 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;
- /// <summary>
- /// 参考价格
- /// </summary>
- public float Price
- {
- get { return price; }
- set { price = value; }
- }
- int currency;
- /// <summary>
- /// 币种
- /// </summary>
- public int Currency
- {
- get { return currency; }
- set { currency = value; }
- }
- int star;
- /// <summary>
- /// 星级
- /// </summary>
- public int Star
- {
- get { return star; }
- set { star = value; }
- }
- string startDate;
- /// <summary>
- /// 消费日期
- /// </summary>
- 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; }
- }
- }
- }
|