CategoryChainInfo.cs 679 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace JiaZhiQuan.Common.Models.VO.UE {
  4. public class CategoryChainInfo {
  5. public int id { get; set; }
  6. public string code { get; set; }
  7. public int catId { get; set; }
  8. public int specId { get; set; }
  9. public string specValueIds { get; set; }
  10. public string parentCode { get; set; }
  11. public int parentSpecId { get; set; }
  12. public int parentSpecValueId { get; set; }
  13. public string specIdsPath { get; set; }
  14. public string specValueIdsPath { get; set; }
  15. public int displayOrder { get; set; }
  16. public int showType { get; set; }
  17. }
  18. }