You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
656 B
C#
37 lines
656 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using djy.Model;
|
|
using Common;
|
|
using djy.Model.AmsDto;
|
|
using Common.Utilities;
|
|
using djy.Model.Ams;
|
|
using djy.IService.Djy;
|
|
using Common.DJYModel;
|
|
using djy.Model.Report;
|
|
|
|
|
|
namespace djy.IService.Report
|
|
{
|
|
|
|
public interface IReportService : IsBase
|
|
{
|
|
|
|
|
|
// List<DS_ReportTemplate> GetTemplate();
|
|
|
|
|
|
TableData Load(User user);
|
|
|
|
|
|
string SaveInfo(DS_Report dto, User user);
|
|
|
|
|
|
Response IsBook(string Gid, string TemplateId, bool isBook, string DJson, User user);
|
|
|
|
void TemplateTask();
|
|
}
|
|
}
|