using Myshipping.Core; using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; using System.Collections.Generic; using Myshipping.Core.Entity; namespace Myshipping.Core.Service { public interface IDjyTenantParamService { Task Add(AddDJYTenantParamInput input); Task Update(UpdateDJYTenantParamInput input); Task Delete(long Id); Task> List(string Type,string ParaName); Task> GetParamItem(string ParaCode); Task AddParamItem(DjyTenantParamItem input); Task UpdateParamItem(DjyTenantParamItem input); Task DeleteParamItem(long Id); Task CacheData(); } }