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.App.Model { [Table("SysSetings")] public class SysSetings : BaseModel { public string ServerIp { get; set; } public int Port { get; set; } public int HttpPort { get; set; } public string XLDirectory { get; set; } public string MapService { get; set; } } }