You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
271 B
C#

namespace DS.Module.Core.Data;
/// <summary>
/// 租户id全局过滤器
/// </summary>
public interface ITenantId
{
/// <summary>
/// 租户id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "租户id")]
public long TenantId { get; set; }
}