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.
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
|
|
|
|
|
|
|
|
[SqlSugar.SugarTable("sys_datarule")]
|
|
|
|
|
public class SysDataRule : BaseModel<string>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 资源标识(权限ID)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PermissionId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模块名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PermissionName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否可用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Enable { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 权限规则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DataRules { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据权限描述
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 排序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SortNo { get; set; }
|
|
|
|
|
}
|