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.
19 lines
456 B
C#
19 lines
456 B
C#
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
/// <summary>
|
|
/// 租户模块授权
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_tenant_permission_auth")]
|
|
public class SysTenantPermissionAuth: BaseTenantModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 模块id
|
|
/// </summary>
|
|
public long PermissionId { get; set; }
|
|
/// <summary>
|
|
/// 模块授权数-加密
|
|
/// </summary>
|
|
public string AuthNum { get; set; }
|
|
} |