ProductPropertyDto.cs 852 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace ShwasherSys.ProductInfo.Dto
  5. {
  6. [AutoMapTo(typeof(ProductProperty)),AutoMapFrom(typeof(ProductProperty))]
  7. public class ProductPropertyDto: EntityDto<int>
  8. {
  9. /// <summary>
  10. /// 属性类别(规格1,材质2,硬度3,表色4,特殊处理(倒角,高度,反面,粗糙度等等) 5)
  11. /// </summary>
  12. public string PropertyType { get; set; }
  13. /// <summary>
  14. /// 属性编码
  15. /// </summary>
  16. public string PropertyNo { get; set; }
  17. public string PropertyValue { get; set; }
  18. public string DisplayValue { get; set; }
  19. /// <summary>
  20. /// 海关HS编码
  21. /// </summary>
  22. public string HsCode { get; set; }
  23. public string ContentInfo { get; set; }
  24. }
  25. }