forked from gongxuegit/tiku-backend.net
feat(platform): add CRM SMS and payment settings
This commit is contained in:
@@ -54,6 +54,9 @@ public sealed class TikuDbContext(
|
||||
public DbSet<TenantExternalProvider> TenantExternalProviders => Set<TenantExternalProvider>();
|
||||
public DbSet<TenantSecret> TenantSecrets => Set<TenantSecret>();
|
||||
public DbSet<SmsVerificationCode> SmsVerificationCodes => Set<SmsVerificationCode>();
|
||||
public DbSet<SmsChannel> SmsChannels => Set<SmsChannel>();
|
||||
public DbSet<SmsTemplate> SmsTemplates => Set<SmsTemplate>();
|
||||
public DbSet<SmsSendLog> SmsSendLogs => Set<SmsSendLog>();
|
||||
public DbSet<AuthLoginEvent> AuthLoginEvents => Set<AuthLoginEvent>();
|
||||
public DbSet<AuthSession> AuthSessions => Set<AuthSession>();
|
||||
public DbSet<AuthChallenge> AuthChallenges => Set<AuthChallenge>();
|
||||
@@ -184,6 +187,8 @@ public sealed class TikuDbContext(
|
||||
public DbSet<PlatformAuditAlert> PlatformAuditAlerts => Set<PlatformAuditAlert>();
|
||||
public DbSet<PlatformBillingDunningNotificationChannel> PlatformBillingDunningNotificationChannels => Set<PlatformBillingDunningNotificationChannel>();
|
||||
public DbSet<PlatformBillingDunningNotificationEvent> PlatformBillingDunningNotificationEvents => Set<PlatformBillingDunningNotificationEvent>();
|
||||
public DbSet<PlatformPaymentApp> PlatformPaymentApps => Set<PlatformPaymentApp>();
|
||||
public DbSet<PlatformPaymentChannel> PlatformPaymentChannels => Set<PlatformPaymentChannel>();
|
||||
public DbSet<SaasFeature> SaasFeatures => Set<SaasFeature>();
|
||||
public DbSet<PermissionModule> PermissionModules => Set<PermissionModule>();
|
||||
public DbSet<SaasOffering> SaasOfferings => Set<SaasOffering>();
|
||||
|
||||
Reference in New Issue
Block a user