using Ropin.Inspection.Model.SearchModel; using Ropin.Inspection.Model.ViewModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.Interface { /// /// 报表接口 /// public interface IReportService : IBaseService, IBaseServiceById { Task UpdateAsync(Guid id, ReportUpdateViewModel updateModel); Task> GetWithoutReportData(ReportSearchModel searchModel); Task GetReportDataByIdAsync(Guid id); Task GetHiddenDangerRectificationAcceptanceFormReportDataByIdAsync(Guid id); } }