HKC_Blazor/MasaBlazorApp3/DataAccess/Dao/IReportDataDao.cs.cs

16 lines
381 B
C#
Raw Normal View History

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
{
//专用账册导出数据
Task<List<ChannelStock>> AccountBookExport(DateTime? startDate, DateTime? endDate, string drugId);
}
}