You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
965 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPA.KitChen.GroupMeal.Application.Service.Device.PushDto.Goods
  7. {
  8. public class GoodsAttributeDto
  9. {
  10. public string Id { get; set; }
  11. /// <summary>
  12. /// 属性名称
  13. /// </summary>
  14. public string AttributeName { get; set; }
  15. /// <summary>
  16. /// 商品小类id
  17. /// </summary>
  18. public string GoodsTypeId { get; set; }
  19. public List<GoodsAttributeValue> AttributeValueList { get; set; }
  20. public int Sort { get; set; }
  21. }
  22. public class GoodsAttributeValue
  23. {
  24. public string Id { get; set; }
  25. /// <summary>
  26. ///商品属性id
  27. /// </summary>
  28. public string GoodsAttributeId { get; set; }
  29. /// <summary>
  30. /// 属性值
  31. /// </summary>
  32. public string AttributeValue { get; set; }
  33. }
  34. }