ProductPropertyUpdateDto.cs 820 B

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