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
{
///
/// 配送模板区域及运费接口类
///
/// @author 黎文豪
/// @date 2023-06-16
///
public interface IDeliveryRuleService : IBaseService
{
///
/// 获取配送模板区域及运费分页列表
///
///
///
Task> GetDeliveryRuleList(DeliveryRuleQueryDto parm);
///
/// 添加或修改配送模板区域及运费
///
///
///
Task AddOrUpdateDeliveryRule(DeliveryRule parm);
}
}