SysSetings.cs 829 B

12345678910111213141516171819202122232425262728293031323334
  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,WMS=1
  18. /// </summary>
  19. public int MapType { get; set; }
  20. /// <summary>
  21. /// 图源地址
  22. /// </summary>
  23. public EnumWmsType? WMSType { get; set; }
  24. /// <summary>
  25. /// 瓦片
  26. /// </summary>
  27. public string LayerName { get; set; }
  28. }
  29. }