using System; using System.Collections.Generic; namespace JiaZhiQuan.Common.Models.VO.UE { public class CategoryChainInfo { public int id { get; set; } public string code { get; set; } public int catId { get; set; } public int specId { get; set; } public string specValueIds { get; set; } public string parentCode { get; set; } public int parentSpecId { get; set; } public int parentSpecValueId { get; set; } public string specIdsPath { get; set; } public string specValueIdsPath { get; set; } public int displayOrder { get; set; } public int showType { get; set; } } }