ProductDto.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.ProductInfo;
  5. namespace ShwasherSys.ProductInfo.Dto
  6. {
  7. [AutoMapTo(typeof(Product)),AutoMapFrom(typeof(Product))]
  8. public class ProductDto: EntityDto<string>
  9. {
  10. public string ProductName { get; set; }
  11. public string Model { get; set; }
  12. public int? StandardId { get; set; }
  13. public string Material { get; set; }
  14. public string ProductDesc { get; set; }
  15. public string SurfaceColor { get; set; }
  16. public string Rigidity { get; set; }
  17. public DateTime? TimeCreated { get; set; }
  18. public DateTime? TimeLastMod { get; set; }
  19. public string UserIDLastMod { get; set; }
  20. public int Sequence { get; set; }
  21. public string IsStandard { get; set; }
  22. public string IsLock { get; set; }
  23. public decimal? Defprice { get; set; }
  24. public decimal? TranUnitValue { get; set; }
  25. public string PartNo { get; set; }
  26. public string SpecialDesc { get; set; }
  27. public string ModelNo { get; set; }
  28. public string MaterialNo { get; set; }
  29. public string SurfaceColorNo { get; set; }
  30. public string RigidityNo { get; set; }
  31. public string SpecialNo { get; set; }
  32. public string PrevProductNo { get; set; }
  33. //产品的材料海关编号
  34. public string MaterialHsCode { get; set; }
  35. }
  36. }