using WIDESEA_Core; using WIDESEA_Core.BaseRepository; using WIDESEA_Core.BaseServices; using WIDESEA_Model.Models; namespace WIDESEA_IStockService { public interface IStockInfoService : IService { IRepository Repository { get; } /// /// 获取库存统计数据 /// /// WebResponseContent GetStockStatistics(); } }