RegionDto.cs 710 B

1234567891011121314151617181920212223
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.BasicInfo;
  5. namespace ShwasherSys.BasicInfo.Region.Dto
  6. {
  7. [AutoMapTo(typeof(Regions)),AutoMapFrom(typeof(Regions))]
  8. public class RegionDto: EntityDto<string>
  9. {
  10. public string RegionName { get; set; }
  11. public string FatherRegionID { get; set; }
  12. public string URL { get; set; }
  13. public int Depth { get; set; }
  14. public string IsLeaf { get; set; }
  15. public int Sort { get; set; }
  16. public string Path { get; set; }
  17. public DateTime? TimeCreated { get; set; }
  18. public DateTime? TimeLastMod { get; set; }
  19. public string UserIDLastMod { get; set; }
  20. public string IsLock { get; set; }
  21. }
  22. }