Locations.cs 710 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Flyinsono.DBCopy.Tool.Entities
  7. {
  8. class Locations
  9. {
  10. public string Id { get; private set; }
  11. public DateTime CreateTime { get; set; } = DateTime.MinValue;
  12. public DateTime UpdateTime { get; set; } = DateTime.MinValue;
  13. public bool IsDeleted { get; set; }
  14. public string AccountId { get; set; }
  15. public string IpAddress { get; set; }
  16. public int AccountType { get; set; }
  17. public string CountryCode { get; set; }
  18. public string ProvinceCode { get; set; }
  19. public string CityCode { get; set; }
  20. }
  21. }