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
348 B
C#
15 lines
348 B
C#
10 months ago
|
using DS.Module.Core.Data;
|
||
|
using SqlSugar;
|
||
|
|
||
|
namespace DS.WMS.Core.System.Entity;
|
||
|
/// <summary>
|
||
|
/// 租户用户授权
|
||
|
/// </summary>
|
||
|
[SqlSugar.SugarTable("sys_tenant_user_auth")]
|
||
|
public class SysTenantUserAuth: BaseTenantModel<long>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户授权数 -加密
|
||
|
/// </summary>
|
||
|
public string AuthNum { get; set; }
|
||
|
}
|