12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- class Locations
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; set; } = DateTime.MinValue;
- public DateTime UpdateTime { get; set; } = DateTime.MinValue;
- public bool IsDeleted { get; set; }
- public string AccountId { get; set; }
- public string IpAddress { get; set; }
- public int AccountType { get; set; }
- public string CountryCode { get; set; }
- public string ProvinceCode { get; set; }
- public string CityCode { get; set; }
- }
- }
|