FactoriesDto.cs 678 B

12345678910111213141516171819202122
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.BasicInfo;
  5. namespace ShwasherSys.BasicInfo.Factory.Dto
  6. {
  7. [AutoMapTo(typeof(Factories)),AutoMapFrom(typeof(Factories))]
  8. public class FactoriesDto: EntityDto<string>
  9. {
  10. public string FactoryName { get; set; }
  11. public string ShortNames { get; set; }
  12. public string RegionID { get; set; }
  13. public string FactoryURL { get; set; }
  14. public string Address { get; set; }
  15. public string ZIP { get; set; }
  16. public string LinkMan { get; set; }
  17. public string Telephone { get; set; }
  18. public string Remark { get; set; }
  19. //public string IsLock { get; set; }
  20. }
  21. }