12345678910111213141516171819202122232425262728293031323334 |
- 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>
- /// 图源地址
- /// </summary>
- public EnumWmsType? WMSType { get; set; }
- /// <summary>
- /// 瓦片
- /// </summary>
- public string LayerName { get; set; }
- }
- }
|