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 GoodsAttributeValueDto { public string Id { get; set; } /// ///商品属性id /// public string GoodsAttributeId { get; set; } /// /// 属性值 /// public string AttributeValue { get; set; } public int Sort { get; set; } public string WaiKey { get; set; } } }