using System; using System.Collections.Generic; namespace MySystem.JavaModels { public partial class SysCity { public int Id { get; set; } public int CityId { get; set; } public int Level { get; set; } public int ParentId { get; set; } public string AreaCode { get; set; } public string Name { get; set; } public string MergerName { get; set; } public string Lng { get; set; } public string Lat { get; set; } public bool? IsShow { get; set; } public DateTime CreateTime { get; set; } public DateTime UpdateTime { get; set; } } }