using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Core.Tenants
{
    /// 
    /// 租户模型接口
    /// 
    public interface ITenantEntity
    {
        /// 
        /// 租户Id
        /// 
        [SugarColumn(DefaultValue = "0")]
        public long TenantId { get; set; }
    }
}