ProductPropertyCreateDto.cs 836 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using Abp.AutoMapper;
  3. using System.ComponentModel.DataAnnotations;
  4. using IwbZero.AppServiceBase;
  5. namespace ShwasherSys.ProductInfo.Dto
  6. {
  7. [AutoMapTo(typeof(ProductProperty))]
  8. public class ProductPropertyCreateDto
  9. {
  10. /// <summary>
  11. /// 属性类别(规格1,材质2,硬度3,表色4,特殊性(高度,倒角,反面,粗糙度)5)
  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. }