using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ARW.Model; using ARW.Model.Dto.Business.ShopManager.Shops; using ARW.Model.Models.Business.ShopManager.Shops; using ARW.Model.Vo.Business.ShopManager.Shops; namespace ARW.Service.Business.IBusinessService.ShopManager.Shops { /// /// 店铺接口类 /// /// @author 黎文豪 /// @date 2023-06-09 /// public interface IShopService : IBaseService { /// /// 获取店铺分页列表 /// /// /// Task> GetShopList(ShopQueryDto parm); /// /// 添加或修改店铺 /// /// /// Task AddOrUpdateShop(Shop parm); /// /// Excel导出 /// Task> HandleExportData(List data); /// /// 审核 /// Task Audit(int idsArr, int status,long userGuid); } }