ProductPropertyDto.cs 731 B

12345678910111213141516171819202122
  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. public string ContentInfo { get; set; }
  20. }
  21. }