基础服务api
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

21 řádky
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. }