using System.Threading.Tasks; using DouyinApi.IServices.BASE; using DouyinApi.Model.Models; namespace DouyinApi.IServices; public interface ITenantService : IBaseServices { public Task SaveTenant(SysTenant tenant); public Task InitTenantDb(SysTenant tenant); }