47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Business.GoodsManager.GoodsSpecs.Specs;
|
|
using ARW.Model.Models.Business.GoodsManager.GoodsSpecs.Specs;
|
|
using ARW.Model.Vo.Business.GoodsManager.GoodsSpecs.Specs;
|
|
using ARW.Repository.Business.GoodsManager.GoodsSpecs.Specs;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.GoodsManager.GoodsSpecs.Specs
|
|
{
|
|
/// <summary>
|
|
/// 商品规格组接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-19
|
|
/// </summary>
|
|
public interface ISpecService : IBaseService<Spec>
|
|
{
|
|
/// <summary>
|
|
/// 获取商品规格组分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<SpecVo>> GetSpecList(SpecQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 新增规格组
|
|
/// </summary>
|
|
/// <param name="sepcList">规格组列表</param>
|
|
Task InsertSpecAsync(List<Spec> sepcList);
|
|
|
|
|
|
/// <summary>
|
|
/// 更新规格组
|
|
/// </summary>
|
|
/// <param name="sepcList">规格组列表</param>
|
|
/// <returns></returns>
|
|
Task UpdateSpecAsync(List<Spec> sepcList);
|
|
|
|
|
|
}
|
|
}
|