using BPA.SAAS.Manage.Core.DataBase; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsAttribute { public class GoodsAttributeView { public string Id { get; set; } /// /// 属性名称 /// public string AttributeName { get; set; } /// /// 商品小类id /// public string GoodsTypeId { get; set; } public List AttributeValueList { get; set; } public int Sort { get; set; } } }