using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Resource
{
    /// 
    /// 团组数据 景点数据
    /// 
    public class Res_ScenicSpotInfo:EntityBase
    {
        /// 
        /// 国家
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
        public string Country { get; set; }
        /// 
        /// 城市
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
        public string City { get; set; }
        /// 
        /// 景点
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
        public string ScenicSpot { get; set; }
        /// 
        /// 景点项目描述
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
        public string ScenicSpotDetail { get; set; }
        /// 
        /// 景点价格
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal Price { get; set; }
        /// 
        /// 汇率
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal Rate { get; set; }
        /// 
        /// 币种
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
        public string Currency { get; set; }
        /// 
        /// 景点地址
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
        public string Address { get; set; }
    }
}