using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XdCxRhDW.Entity { [Table("SysSetings")] public class SysSetings : BaseEntity { public int HttpPort { get; set; } public string XLDirectory { get; set; } public int YDPZThreshold { get; set; } /// /// 地图类型.本地地图=0,WMTS=1 /// public int MapType { get; set; } /// /// WMTS来源.(MapType=1时候有效)(自采集、数据中心) /// public EnumWmtsSource WmtsSource { get; set; } /// /// 地图图层类型 /// public EnumMapLayerType MapLayerType { get; set; } } }