using DS.WMS.Core.Fee.Dtos; namespace DS.WMS.Core.Fee.Interface { /// /// 用于输出报表的数据提供程序 /// public interface IReportProvider { /// /// 返回所需的JSON格式的数据 /// /// 报表输出上下文 /// Task GetDataAsync(ReportContext context); } }