16 lines
381 B
C#
16 lines
381 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<List<ChannelStock>> AccountBookExport(DateTime? startDate, DateTime? endDate, string drugId);
|
|
}
|
|
}
|