123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- namespace JiaZhiQuan.Common.Models.VO.UE {
- public class CategoryInfo {
- public int catId { get; set; }
- public int? parentId { get; set; }
- public string sellCatName { get; set; }
- public string mallCatName { get; set; }
- public int catLevel { get; set; }
- public string namePath { get; set; }
- public int state { get; set; }
- public int mallDisplayOrder { get; set; }
- public int sellDisplayOrder { get; set; }
- public int postServiceFeeTempId { get; set; }
- public int pubServiceFeeTempId { get; set; }
- public int postPointsPlanId { get; set; }
- public int pubPointsPlanId { get; set; }
- public int photoPlanId { get; set; }
- public int pickDepositId { get; set; }
- public string catImageUrl { get; set; }
- public string canSaleImgUrl { get; set; }
- public string description { get; set; }
- public string checkDetail { get; set; }
- public int hasAllSKU { get; set; }
- public int skuCount { get; set; }
- public DateTime? createAt { get; set; }
- public DateTime? updateAt { get; set; }
- //二级类目
- public List<CategoryInfo> childCategory { get; set; }
- }
- }
|