mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
17 lines
443 B
C#
17 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.SqlSugarCore.Abstractions;
|
|
|
|
/// <summary>
|
|
/// 默认租户表特性
|
|
/// 标记此特性的实体类将在默认租户数据库中创建表
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
|
public sealed class DefaultTenantTableAttribute : Attribute
|
|
{
|
|
}
|