基础服务api
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
1.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsAttribute
  7. {
  8. public class GoodsAttributeList
  9. {
  10. public string GoodsAttributeId { 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 int Sort { get; set; }
  20. public List<GoodsAttributeValueList> GoodsAttributeValueList { get; set; }
  21. }
  22. public class GoodsAttributeValueList
  23. {
  24. public string GoodsAttributeValuId { 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. public int Sort { get; set; }
  34. }
  35. }