CategoryInfo.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. namespace JiaZhiQuan.Common.Models.VO.UE {
  4. public class CategoryInfo {
  5. public int catId { get; set; }
  6. public int? parentId { get; set; }
  7. public string sellCatName { get; set; }
  8. public string mallCatName { get; set; }
  9. public int catLevel { get; set; }
  10. public string namePath { get; set; }
  11. public int state { get; set; }
  12. public int mallDisplayOrder { get; set; }
  13. public int sellDisplayOrder { get; set; }
  14. public int postServiceFeeTempId { get; set; }
  15. public int pubServiceFeeTempId { get; set; }
  16. public int postPointsPlanId { get; set; }
  17. public int pubPointsPlanId { get; set; }
  18. public int photoPlanId { get; set; }
  19. public int pickDepositId { get; set; }
  20. public string catImageUrl { get; set; }
  21. public string canSaleImgUrl { get; set; }
  22. public string description { get; set; }
  23. public string checkDetail { get; set; }
  24. public int hasAllSKU { get; set; }
  25. public int skuCount { get; set; }
  26. public DateTime? createAt { get; set; }
  27. public DateTime? updateAt { get; set; }
  28. //二级类目
  29. public List<CategoryInfo> childCategory { get; set; }
  30. }
  31. }