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.
20 lines
618 B
C#
20 lines
618 B
C#
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<List<DjyTenantParam>> Get(string Type);
|
|
Task<List<DjyTenantParamItem>> GetParamItem(string ParaCode);
|
|
Task AddParamItem(DjyTenantParamItem input);
|
|
|
|
Task UpdateParamItem(DjyTenantParamItem input);
|
|
}
|
|
} |