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