This commit is contained in:
alex
2023-06-21 09:11:33 +08:00
parent 3485b72044
commit 4b8f14d215
6 changed files with 23 additions and 5 deletions

View File

@@ -51,4 +51,8 @@ public class ClaimConst
/// 登录类型用于区分Pc或Pda端
/// </summary>
public const string LOGINTYPE = "LoginType";
/// <summary>
/// 组织ID
/// </summary>
public const string CLAINMORGID = "OrgId";
}

View File

@@ -16,4 +16,6 @@ public class BaseEntity<TKey> : IEntity where TKey : IEquatable<TKey>
[SugarColumn(ColumnName = "id", ColumnDescription = "主键", IsPrimaryKey = true)]
public TKey id { get; set; }
}