/* *所有关于App_ReportPrice类的业务代码接口应在此处编写 */ using System.Threading.Tasks; using VOL.Core.BaseProvider; using VOL.Core.Utilities; using VOL.Entity.DomainModels; namespace VOL.AppManager.IServices { public partial interface IApp_ReportPriceService { /// /// 获取table1的数据 /// /// /// Task GetTable1Data(PageDataOptions loadData); /// /// 获取table2的数据 /// /// /// Task GetTable2Data(PageDataOptions loadData); } }