SysCity.cs 641 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class SysCity
  6. {
  7. public int Id { get; set; }
  8. public int CityId { get; set; }
  9. public int Level { get; set; }
  10. public int ParentId { get; set; }
  11. public string AreaCode { get; set; }
  12. public string Name { get; set; }
  13. public string MergerName { get; set; }
  14. public string Lng { get; set; }
  15. public string Lat { get; set; }
  16. public bool? IsShow { get; set; }
  17. public DateTime CreateTime { get; set; }
  18. public DateTime UpdateTime { get; set; }
  19. }
  20. }