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