SysSetings.cs 918 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace XdCxRhDW.Entity
  9. {
  10. [Table("SysSetings")]
  11. public class SysSetings : BaseEntity
  12. {
  13. public int HttpPort { get; set; }
  14. public string XLDirectory { get; set; }
  15. public int YDPZThreshold { get; set; }
  16. /// <summary>
  17. /// 地图类型.本地地图=0,WMTS=1
  18. /// </summary>
  19. public int MapType { get; set; }
  20. /// <summary>
  21. /// WMTS来源.(MapType=1时候有效)(自采集、数据中心)
  22. /// </summary>
  23. public EnumWmtsSource WmtsSource { get; set; }
  24. /// <summary>
  25. /// 地图图层类型
  26. /// </summary>
  27. public EnumMapLayerType MapLayerType { get; set; }
  28. }
  29. }