StandardDetailDto.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace ShwasherSys.ProductInfo.Dto
  5. {
  6. [AutoMapTo(typeof(StandardDetail)),AutoMapFrom(typeof(StandardDetail))]
  7. public class StandardDetailDto: EntityDto<int>
  8. {
  9. public int StandardId { get; set; }
  10. public string Specs { get; set; }
  11. public string StandardName { get; set; }
  12. public decimal? InnerDiameter1 { get; set; }
  13. public decimal? InnerDiameter2 { get; set; }
  14. public decimal? OutDiameter1 { get; set; }
  15. public decimal? OutDiameter2 { get; set; }
  16. public decimal? Thickness1 { get; set; }
  17. public decimal? Thickness2 { get; set; }
  18. public decimal? Height1 { get; set; }
  19. public decimal? Height2 { get; set; }
  20. public decimal? InnerChamfer1 { get; set; }
  21. public decimal? InnerChamfer2 { get; set; }
  22. public decimal? OutChamfer1 { get; set; }
  23. public decimal? OutChamfer2 { get; set; }
  24. public decimal? ThousandWeigh { get; set; }
  25. public string StandardAbbr { get; set; }
  26. public string StandardAbbrName { get; set; }
  27. public string StandardFullName { get; set; }
  28. public string Model { get; set; }
  29. }
  30. }