key1_beacon_api/ARW.Service/Business/IBusinessService/LogisticsManage/DeliveryRules/IDeliveryRuleService.cs

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.LogisticsManage.DeliveryRules;
using ARW.Model.Models.Business.LogisticsManage.DeliveryRules;
using ARW.Model.Vo.Business.LogisticsManage.DeliveryRules;
namespace ARW.Service.Business.IBusinessService.LogisticsManage.DeliveryRules
{
/// <summary>
/// 配送模板区域及运费接口类
///
/// @author 黎文豪
/// @date 2023-06-16
/// </summary>
public interface IDeliveryRuleService : IBaseService<DeliveryRule>
{
/// <summary>
/// 获取配送模板区域及运费分页列表
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
Task<PagedInfo<DeliveryRuleVo>> GetDeliveryRuleList(DeliveryRuleQueryDto parm);
/// <summary>
/// 添加或修改配送模板区域及运费
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
Task<string> AddOrUpdateDeliveryRule(DeliveryRule parm);
}
}