using Rhea.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tiger.Model; namespace Tiger.IBusiness { public interface IImportExcel { public Task Import(T newEntity, string jsonStr) where T : class, new(); public Task>> ValidateTableImport(T newEntity, ImportEntityValidate input); } }