Files
Api/DouyinApi.IServices/ITenantService.cs

12 lines
285 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
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);
}