using System.Collections.Generic; namespace JiaZhiQuan.Common.Models.VO.Mall.Category { /// /// 同一属性值下的属性约束关系 /// public class SpecValueRestrictVO { /// /// 属性id /// public List specIds { get; set; } /// /// 属性值id集合 /// public List specValueIds { get; set; } } public class SpecValueRestrictItemVO { public List ids { get; set; } } }