using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ExportMap.Models { public class SysPublish { public int id { set; get; } public string name { set; get; } public string url { set; get; } public string path { set; get; } public string type { set; get; } public int status { set; get; } public string dirid { set; get; } public string depid { set; get; } public int min { set; get; } public int max { set; get; } public string json { set; get; } public int create_user { set; get; } public DateTime create_time { set; get; } public int update_user { set; get; } public DateTime update_time { set; get; } public string geom { set; get; } public string bak { set; get; } } }