21 lines
458 B
C#
21 lines
458 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Data;
|
|||
|
|
using WMS.Model.Report;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IReport
|
|||
|
|
{
|
|||
|
|
public interface ICKReport
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取数据
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetReport(CKReportModel model);
|
|||
|
|
DataTable GetReport2(string date1,string date2);
|
|||
|
|
}
|
|||
|
|
}
|