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.

35 lines
624 B
C#

2 years ago
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
{
2 years ago
// List<DS_ReportTemplate> GetTemplate();
2 years ago
TableData Load(User user);
string SaveInfo(DS_Report dto, User user);
string IsBook(string Gid, string TemplateId, bool isBook, string DJson, User user);
}
}