60 lines
1.7 KiB
C#
60 lines
1.7 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.LogisticsCompanys;
|
|
using ARW.Model.Models.Business.LogisticsManage.LogisticsCompanys;
|
|
using ARW.Model.Vo.Business.LogisticsManage.LogisticsCompanys;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.LogisticsManage.LogisticsCompanys
|
|
{
|
|
/// <summary>
|
|
/// 物流公司接口类
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-18
|
|
/// </summary>
|
|
public interface ILogisticsCompanyService : IBaseService<LogisticsCompany>
|
|
{
|
|
/// <summary>
|
|
/// 获取物流公司分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<LogisticsCompanyVo>> GetLogisticsCompanyList(LogisticsCompanyQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改物流公司
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateLogisticsCompany(LogisticsCompany parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 数据导入处理
|
|
/// </summary>
|
|
/// <param name="shopVo"></param>
|
|
/// <returns></returns>
|
|
Task<LogisticsCompanyVo> HandleImportData(LogisticsCompanyVo LogisticsCompanyVo);
|
|
|
|
|
|
/// <summary>
|
|
/// Excel导入
|
|
/// </summary>
|
|
/// <param name="shopVo"></param>
|
|
/// <returns></returns>
|
|
Task<string> ImportExcel(LogisticsCompany LogisticsCompany,int index,bool isUpdateSupport,string user);
|
|
|
|
/// <summary>
|
|
/// Excel导出
|
|
/// </summary>
|
|
Task<List<LogisticsCompanyVo>> HandleExportData(List<LogisticsCompanyVo> data);
|
|
|
|
|
|
}
|
|
}
|