2025-07-05 17:27:18 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2025-07-21 16:42:40 +08:00
|
|
|
|
//获取库存导出数据
|
|
|
|
|
Task<PageData<ReportStockDateInfo>> GetStockExportData(string drugName);
|
2025-07-05 17:27:18 +08:00
|
|
|
|
//专用账册导出数据
|
2025-07-21 16:42:40 +08:00
|
|
|
|
Task<PageData<ReportAccountDateInfo>> GetAccountExportData(DateTime? startDate, DateTime? endDate, string drugName);
|
2025-07-05 17:27:18 +08:00
|
|
|
|
}
|
|
|
|
|
}
|