12 lines
285 B
C#
12 lines
285 B
C#
using System.Threading.Tasks;
|
|
using DouyinApi.IServices.BASE;
|
|
using DouyinApi.Model.Models;
|
|
|
|
namespace DouyinApi.IServices;
|
|
|
|
public interface ITenantService : IBaseServices<SysTenant>
|
|
{
|
|
public Task SaveTenant(SysTenant tenant);
|
|
|
|
public Task InitTenantDb(SysTenant tenant);
|
|
} |