13 lines
259 B
C#
13 lines
259 B
C#
using Service.Interface;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
/// <summary>
|
|
/// 统计报表 服务实现
|
|
/// </summary>
|
|
public class StatisticsReportService : IStatisticsReportService
|
|
{
|
|
// TODO: 实现 统计报表 相关方法
|
|
}
|
|
}
|