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
269 B
C#

using SqlSugar;
namespace EntrustSettle.Model;
/// <summary>
/// 租户模型接口
/// </summary>
public interface ITenantEntity
{
/// <summary>
/// 租户Id
/// </summary>
[SugarColumn(DefaultValue = "0")]
public long TenantId { get; set; }
}