42 lines
1.1 KiB
C#
42 lines
1.1 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.GoodsSpecRels;
|
|
using ARW.Model.Models.Business.GoodsManager.GoodsSpecs.GoodsSpecRels;
|
|
using ARW.Model.Vo.Business.GoodsManager.GoodsSpecs.GoodsSpecRels;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.GoodsManager.GoodsSpecs.GoodsSpecRels
|
|
{
|
|
/// <summary>
|
|
/// 商品与规格值关系记录接口类
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-19
|
|
/// </summary>
|
|
public interface IGoodsSpecRelService : IBaseService<GoodsSpecRel>
|
|
{
|
|
/// <summary>
|
|
/// 获取商品与规格值关系记录分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<GoodsSpecRelVo>> GetGoodsSpecRelList(GoodsSpecRelQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改商品与规格值关系记录
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateGoodsSpecRel(GoodsSpecRel parm);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|