ProductPropertyCreateDto.cs 721 B

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