| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | 
							- 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
 
-     {
 
-         /// <summary>
 
-         /// 系统时区ID
 
-         /// </summary>
 
-         public string TimeZoneID { get; set; }
 
-         public string TimeZoneUTC { get; set; }
 
-         
 
-         public string TimeZoneName { get; set; }
 
-         /// <summary>
 
-         /// 系统时区显示的文本
 
-         /// </summary>
 
-         public string TimeZoneDisplayName => $"{TimeZoneUTC}{TimeZoneName}";   
 
-         /// <summary>
 
-         /// 时区值(北京时间就是8)
 
-         /// </summary>
 
-         public double ZoneHours { get; set; }
 
-         public int HttpPort { get; set; }
 
-         public string XLDirectory { get; set; }
 
-         public int YDPZThreshold { get; set; }
 
-         /// <summary>
 
-         /// 地图类型.本地地图=0,WMTS=1
 
-         /// </summary>
 
-         public int MapType { get; set; }
 
-         
 
-         /// <summary>
 
-         /// WMTS来源.(MapType=1时候有效)(自采集、数据中心)
 
-         /// </summary>
 
-         public EnumWmtsSource WmtsSource { get; set; }
 
-         /// <summary>
 
-         /// 地图图层类型
 
-         /// </summary>
 
-         public EnumMapLayerType MapLayerType { get; set; }
 
-     }
 
- }
 
 
  |