using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 景点类
///
public class ScenicSpotInfo
{
///
/// 编号
///
public int Id { get; set; }
///
/// 国家
///
public string Country { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 景点
///
public string ScenicSpot { get; set; }
///
/// 景点项目描述
///
public string ScenicSpotDetail { get; set; }
///
/// 景点价格
///
public float Price { get; set; }
///
/// 币种
///
public string Currency { get; set; }
///
/// 汇率
///
public float Rate { get; set; }
///
/// 景点地址
///
public string Address { get; set; }
///
/// 操作员工编号
///
public int Oper { get; set; }
///
/// 操作时间
///
public string OpDate { get; set; }
///
/// 删除标识
///
public int Isdel { get; set; }
}
}