¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.DB.Models; |
| | | using WIDESEA_Core.Tenants; |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | [SugarTable("Sys_Tenant", "ç§æ·")] |
| | | public class Sys_Tenant : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ç§æ·ID |
| | | /// </summary> |
| | | [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "ç§æ·ID")] |
| | | public int TenantId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç§æ·åç§° |
| | | /// </summary> |
| | | [SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "ç§æ·åç§°")] |
| | | public string TenantName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç§æ·ç±»å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç§æ·ç±»å")] |
| | | public int TenantType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ°æ®åºç±»å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æ°æ®åºç±»å")] |
| | | public int DbType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è¿æ¥å符串 |
| | | /// </summary> |
| | | [SugarColumn(Length = 1000, IsNullable = false, ColumnDescription = "è¿æ¥å符串")] |
| | | public string ConnectionString { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¶æ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç¶æ")] |
| | | public int Status { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | [SugarColumn(Length = 2000, IsNullable = true, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | } |
| | | } |