44 lines
1.5 KiB
C#
44 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
|
using ARW.Model.Models.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
|
using ARW.Model.Vo.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.GoodsManager.GoodsServicess.GoodsServicesRels
|
|
{
|
|
/// <summary>
|
|
/// 商品服务与承诺关系表接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-18
|
|
/// </summary>
|
|
public interface IGoodsServicesRelService : IBaseService<GoodsServicesRel>
|
|
{
|
|
/// <summary>
|
|
/// 获取商品服务与承诺关系表分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<GoodsServicesRelVo>> GetGoodsServicesRelList(GoodsServicesRelQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 新增商品服务与承诺关系
|
|
/// </summary>
|
|
/// <param name="goodsServicesRelList">商品服务与承诺关系列表</param>
|
|
Task InsertGoodsServicesRelAsync(List<GoodsServicesRel> goodsServicesRelList);
|
|
|
|
|
|
/// <summary>
|
|
/// 更新商品服务与承诺关系
|
|
/// </summary>
|
|
/// <param name="goodsServicesRelList">商品服务与承诺关系列表</param>
|
|
/// <param name="goodsGuid">商品guid</param>
|
|
/// <returns></returns>
|
|
Task UpdateGoodsServicesRelAsync(List<GoodsServicesRel> goodsServicesRelList, long goodsGuid);
|
|
|
|
|
|
}
|
|
}
|