using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsAttributePrice { public class GoodsAttributePriceDto { public string Id { get; set; } public string GoodsId { get; set; } public string GoodsattributeValueId { get; set; } public string GoodsattributeValue { get; set; } public decimal Price { get; set; } } }