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.
BookingHeChuan/Myshipping.Core/Service/DjyTenantParam/IDjyTenantParamService.cs

24 lines
791 B
C#

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<DjyTenantParam>> List(string Type,string ParaName);
Task<List<DjyTenantParamItem>> GetParamItem(string ParaCode);
Task AddParamItem(DjyTenantParamItem input);
Task UpdateParamItem(DjyTenantParamItem input);
Task DeleteParamItem(long Id);
Task CacheData(bool flag);
Task<List<DjyTenantParamValueOutput>> GetParaCodeWithValue(string[] paraCodes);
}
}