18 lines
515 B
C#
18 lines
515 B
C#
using MasaBlazorApp3.Pojo;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MasaBlazorApp3.DataAccess.Dao
|
|
{
|
|
public interface IReportDataDao
|
|
{
|
|
//获取库存导出数据
|
|
Task<PageData<ReportStockDateInfo>> GetStockExportData(string drugName);
|
|
//专用账册导出数据
|
|
Task<PageData<ReportAccountDateInfo>> GetAccountExportData(DateTime? startDate, DateTime? endDate, string drugName);
|
|
}
|
|
}
|