using ZR.Mall.Model;
using ZR.Mall.Model.Dto;
namespace ZR.Mall.Service.IService
{
///
/// 商品规格service接口
///
public interface IProductSpecService : IBaseService
{
PagedInfo GetList(ShoppingProductSpecQueryDto parm);
ProductSpec AddShoppingProductspec(ProductSpec parm);
long UpdateProductSpec(long productId, List parm);
long DeleteSpecByProductId(long productId);
}
}