基础服务api
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

21 wiersze
567 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.SAAS.Manage.Application.DataBase.Dtos.GoodsAttribute
  7. {
  8. public class GoodsAttributeDto
  9. {
  10. public string Id { get; set; }
  11. public string AttributeName { get; set; }
  12. /// <summary>
  13. /// 商品小类id
  14. /// </summary>
  15. public string GoodsTypeId { get; set; }
  16. public List<GoodsAttributeValueDto> GoodsAttributeValueList { get; set; }
  17. public int Sort { get; set; }
  18. }
  19. }