ProductPropertyUpdateDto.cs 698 B

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