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.
15 lines
324 B
C#
15 lines
324 B
C#
12 months ago
|
using SqlSugar;
|
||
|
|
||
|
namespace DS.Module.Core.Data;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 自定义租户基类实体
|
||
|
/// </summary>
|
||
|
public abstract class DBEntityTenant : BaseModel<string>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 租户id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "租户id")]
|
||
|
public virtual string? TenantId { get; set; }
|
||
|
}
|