Closed LemonNoCry closed 1 year ago
在兼容原有框架上,进行升级
新增表: [SysTenant] 系统租户表
public class SysTenant : RootEntityTkey<long> { /// <summary> /// 名称 /// </summary> public string Name { get; set; } /// <summary> /// 租户类型 /// </summary> public TenantTypeEnum TenantType { get; set; } /// <summary> /// 数据库/租户标识 不可重复<br/> /// 使用Id方案,可无需配置 /// </summary> [SugarColumn(Length = 64)] public string ConfigId { get; set; } ... }
根据TenantType 分为两种方案:
在兼容原有框架上,进行升级
新增表: [SysTenant] 系统租户表
根据TenantType 分为两种方案: