1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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; }
- /// <summary>
- /// 地图类型.本地地图=0,WMS=1
- /// </summary>
- public int MapType { get; set; }
-
- /// <summary>
- /// 选中的WMS类型.(MapType=1时候有效)
- /// </summary>
- public EnumWmsType WMSType { get; set; }
- public string ZKXT_Url { get; set; }
- public string ZKXT_LayerName { get; set; }
- public string SJZX_Url { get; set; }
- public string SJZX_LayerName { get; set; }
- public string LW_Url { get; set; }
- public string LW_LayerName { get; set; }
- }
- }
|