SysSetings.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. /// 选中的WMS类型.(MapType=1时候有效)
  22. /// </summary>
  23. public EnumWmsType WMSType { get; set; }
  24. public string ZKXT_Url { get; set; }
  25. public string ZKXT_LayerName { get; set; }
  26. public string SJZX_Url { get; set; }
  27. public string SJZX_LayerName { get; set; }
  28. public string LW_Url { get; set; }
  29. public string LW_LayerName { get; set; }
  30. }
  31. }